Add ca-certificates to Homepage builder stage
--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:
parent
e45b1a4afb
commit
7c0089a2ad
1 changed files with 1 additions and 1 deletions
|
|
@ -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} \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue