Skip to content

Commit 0cc332a

Browse files
committed
Fix incorrect vhdl_ls path in Dockerfile. #65
1 parent 1a82a6b commit 0cc332a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ RUN cargo build --manifest-path $CRATE/Cargo.toml --release --features "packaged
77

88
FROM scratch
99
ARG CRATE
10-
COPY --from=builder /volume/target/x86_64-unknown-linux-musl/release/$CRATE /app/bin
10+
COPY --from=builder /volume/target/x86_64-unknown-linux-musl/release/$CRATE /app/bin/$CRATE
1111
COPY --from=builder /volume/vhdl_libraries /app/vhdl_libraries
12-
ENTRYPOINT ["/app/bin"]
12+
ENTRYPOINT ["/app/bin/$CRATE"]

0 commit comments

Comments
 (0)