From 3129d6e3a2e45bd21c3c64261383cdf713a41752 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 21 Mar 2026 23:01:01 +0100 Subject: [PATCH] fix: add ca-certificates for git clone over HTTPS --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c4bcb9..35285e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:22-slim -RUN apt-get update && apt-get install -y --no-install-recommends git rsync && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y --no-install-recommends git rsync ca-certificates && rm -rf /var/lib/apt/lists/* WORKDIR /quartz