Skip to content

Commit

Permalink
Install ca-certificates into container
Browse files Browse the repository at this point in the history
  • Loading branch information
akrantz01 committed May 7, 2024
1 parent 7c41733 commit 38dd4a4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ RUN --mount=type=cache,target=/root/.rustup \

FROM debian:bookworm-slim as runtime

RUN set -eux; \
apt-get update; \
apt-get -y install ca-certificates; \
rm -rf /var/lib/apt/lists/*

COPY --from=builder /app/identity /usr/local/bin

ENV ADDRESS=[::]:4243
Expand Down

0 comments on commit 38dd4a4

Please sign in to comment.