Skip to content

Commit

Permalink
Merge pull request #17 from oinume/docker-ssl3
Browse files Browse the repository at this point in the history
Fix tls problem
  • Loading branch information
oinume authored Aug 10, 2024
2 parents 3489329 + 6907239 commit 4340282
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ RUN --mount=type=cache,target=/go/pkg/mod/ \

FROM debian:bookworm-slim AS final
RUN set -eux \
apt-get install -qyy --no-install-recommends --no-install-suggests \
ca-certificates openssl
apt-get install -qyy --no-install-recommends --no-install-suggests ca-certificates openssl
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
RUN set -eux \
update-ca-certificates --fresh
ARG UID=10001
RUN adduser \
--disabled-password \
Expand Down

0 comments on commit 4340282

Please sign in to comment.