Skip to content

Commit

Permalink
add ca-certificates to docker image (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4r45h authored Jul 29, 2024
1 parent 85141fd commit 7746a2a
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 @@ ARG PACKAGE
RUN cargo build --release --bin ${PACKAGE}

FROM debian:bookworm-slim AS runtime
RUN apt-get update && apt-get install -y libpq5
RUN apt-get update && apt-get install -y libpq5 ca-certificates
WORKDIR /app
ARG PACKAGE
COPY --from=builder /app/target/release/${PACKAGE} ./
Expand Down

0 comments on commit 7746a2a

Please sign in to comment.