Skip to content

Commit

Permalink
Add comment to docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
miam-miam committed Apr 5, 2024
1 parent 2e6a0e4 commit 60f6e8d
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 @@ -14,12 +14,12 @@ RUN cargo chef cook --release --recipe-path recipe.json
COPY . .
RUN cargo build --release --bin verify-bot

# We do not need the Rust toolchain to run the binary!
FROM debian:bookworm-slim AS runtime
WORKDIR /verify-bot

COPY --from=builder /verify-bot/target/release/verify-bot /usr/local/bin

# Install dependencies needed for verify-bot
RUN apt-get update && apt-get -y install libssl-dev openssl ca-certificates tzdata && apt upgrade -y openssl && apt clean && rm -rf /var/lib/apt/lists/*

ENTRYPOINT ["/usr/local/bin/verify-bot"]
Expand Down

0 comments on commit 60f6e8d

Please sign in to comment.