Add ca-certificates to Homepage builder stage
All checks were successful
Build Container (Nix) / build (push) Successful in 3s
Build Container / build (push) Successful in 3m2s

--no-install-recommends skips ca-certificates, causing git clone
to fail with SSL certificate verification errors.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-02-19 18:05:45 -08:00
commit 7c0089a2ad

View file

@ -6,7 +6,7 @@ ARG HOMEPAGE_VERSION=v1.10.1
FROM node:24-slim AS builder
ARG HOMEPAGE_VERSION
RUN apt-get update && apt-get install -y --no-install-recommends git \
RUN apt-get update && apt-get install -y --no-install-recommends git ca-certificates \
&& rm -rf /var/lib/apt/lists/*
RUN git clone --depth 1 --branch ${HOMEPAGE_VERSION} \