mirror of
https://github.com/yamadashy/repomix.git
synced 2025-06-11 00:25:54 +03:00
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:
@@ -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 && \
|
||||
|
||||
Reference in New Issue
Block a user