Skip to content

Commit

Permalink
Merge pull request #575 from jinko-core/enable-std-feature-when-build…
Browse files Browse the repository at this point in the history
…ing-the-docker-image

Enable std feature when building the docker image
  • Loading branch information
CohenArthur authored Aug 26, 2022
2 parents 5a52696 + 93ca1eb commit 37364c0
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 37364c0

Please sign in to comment.