From db97a7ab10ae3b91faf70fbb13752fe3055368eb Mon Sep 17 00:00:00 2001 From: Six <23470032+6ixfalls@users.noreply.github.com> Date: Thu, 11 May 2023 15:08:56 -0700 Subject: [PATCH] Add ca-certificates to Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4d7d6a58..c3f365f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,9 @@ RUN test -e /go/bin/headscale # Production image FROM docker.io/debian:bullseye-slim +RUN apt-get update \ + && apt-get install -y ca-certificates + COPY --from=build /go/bin/headscale /bin/headscale ENV TZ UTC