Skip to content

Commit

Permalink
Enable std feature when building the docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
tanguysegarra committed Aug 23, 2022
1 parent 18e9b03 commit bf2c9bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ FROM rust:slim-bullseye as build
COPY . /jinko
WORKDIR /jinko
RUN rustup target add x86_64-unknown-linux-musl
RUN cargo build --target=x86_64-unknown-linux-musl --no-default-features --features repl --release
RUN cargo build --target=x86_64-unknown-linux-musl --no-default-features --features repl,std --release
RUN strip /jinko/target/x86_64-unknown-linux-musl/release/jinko


Expand Down

0 comments on commit bf2c9bd

Please sign in to comment.