Skip to content

Commit

Permalink
ci(docker): add missing ca-certificates and SSL certs copy (#2914)
Browse files Browse the repository at this point in the history
Ensure ca-certificates are installed and copied to the base image
to support secure HTTPS connections where required.
steebchen authored Jan 15, 2025
1 parent d50627b commit 792b3c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:bookworm-slim as builder

RUN apt-get update && apt install -y git libtool automake autoconf make tini
RUN apt-get update && apt install -y git libtool automake autoconf make tini ca-certificates

RUN git clone https://github.com/Comcast/Infinite-File-Curtailer.git curtailer \
&& cd curtailer \
@@ -16,6 +16,8 @@ RUN git clone https://github.com/Comcast/Infinite-File-Curtailer.git curtailer \

FROM debian:bookworm-slim as base

COPY --from=builder /etc/ssl/certs /etc/ssl/certs

COPY --from=builder /usr/bin/tini /tini
ENTRYPOINT ["/tini", "--"]

0 comments on commit 792b3c9

Please sign in to comment.