chore(docker): add CURL installation in Dockerfile template (#293)

This commit is contained in:
Giancarlo Buomprisco
2025-06-26 13:43:10 +07:00
committed by GitHub
parent c1fda420e6
commit 1d734e6818

View File

@@ -17,7 +17,9 @@ COPY . .
# Install dependencies using lockfile # Install dependencies using lockfile
RUN pnpm install --frozen-lockfile RUN pnpm install --frozen-lockfile
RUN npm rebuild lightingcss --build-from-source --verbose
# Install CURL
RUN apk add --no-cache curl
# Rebuild the source code only when needed # Rebuild the source code only when needed
FROM base AS builder FROM base AS builder