Skip to content

Commit

Permalink
add ca-certificates into Dockerfile image
Browse files Browse the repository at this point in the history
Signed-off-by: Lance-Drane <[email protected]>
  • Loading branch information
Lance-Drane committed Sep 23, 2024
1 parent 1d69098 commit 18d11fb
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 @@ -27,7 +27,7 @@ RUN cargo build --release --bin ${BIN_NAME}
FROM debian:stable-slim AS runtime
ARG BIN_NAME
WORKDIR /app
RUN apt update -y && apt upgrade -y && apt install -y --no-install-recommends pkg-config libssl-dev
RUN apt update -y && apt upgrade -y && apt install -y --no-install-recommends pkg-config libssl-dev ca-certificates
COPY --from=builder /app/target/release/${BIN_NAME} /app/bin
ENV PROXYAPP_PRODUCTION="true"
ENTRYPOINT ["/app/bin"]

0 comments on commit 18d11fb

Please sign in to comment.