Skip to content

Commit

Permalink
Dockerfile fix (#5)
Browse files Browse the repository at this point in the history
It turned out that the binary wasn't copied properly to the container.
This PR fixes this.
  • Loading branch information
squadgazzz authored Dec 20, 2023
1 parent d00a902 commit 8145172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile.binary
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ FROM docker.io/debian:bullseye-slim

# Handle signal handlers properly
RUN apt-get update && apt-get install -y ca-certificates tini && apt-get clean
COPY --from=cargo-build /src/target/release /usr/local/bin/solvers
COPY --from=cargo-build /src/target/release/solvers /usr/local/bin/solvers

CMD echo "Specify binary..."
ENTRYPOINT ["/usr/bin/tini", "--"]

0 comments on commit 8145172

Please sign in to comment.