From 4cc31bb41febba704b7b0000ddcabedbd90fecd4 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Mon, 25 Nov 2024 09:03:52 +0100 Subject: [PATCH] docker: keep ca certs --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index df86dad0..2f1a4db3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -69,6 +69,9 @@ RUN make build FROM ubuntu:22.04 +# copy ca certificates +COPY --from=0 /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt + COPY --from=0 /browser/zig-out/bin/lightpanda /bin/lightpanda CMD ["/bin/lightpanda", "--host", "0.0.0.0", "--port", "3245"]