Remove Dockerfile shell entry point since there is no shell

This commit is contained in:
Olof Kraigher 2020-01-24 18:18:16 +01:00
parent c2c63567c9
commit 0d81defcf6

View file

@ -7,6 +7,6 @@ RUN cargo build --manifest-path $CRATE/Cargo.toml --release --features "packaged
FROM scratch
ARG CRATE
COPY --from=builder /volume/target/x86_64-unknown-linux-musl/release/$CRATE /app/bin/$CRATE
COPY --from=builder /volume/target/x86_64-unknown-linux-musl/release/$CRATE /app/bin/exe
COPY --from=builder /volume/vhdl_libraries /app/vhdl_libraries
ENTRYPOINT /app/bin/$CRATE
ENTRYPOINT ["/app/bin/exe"]