fix(website/server): Add ca-certificates to Alpine runtime image

Alpine images often omit CA certificates needed for HTTPS git operations. Add ca-certificates to ensure remote cloning/pulls succeed at runtime.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Kazuki Yamada
2025-06-07 17:32:32 +09:00
parent 900bd4936d
commit d58702ed1e

View File

@@ -32,8 +32,8 @@ RUN npm ci --only=production --ignore-scripts && \
# ==============================================================================
FROM node:24-alpine
# Install git (required by repomix for remote repository processing)
RUN apk add --no-cache git
# Install git and ca-certificates (required by repomix for remote repository processing)
RUN apk add --no-cache git ca-certificates
# Create non-root user
RUN addgroup -g 1001 -S nodejs && \