From 1d734e681871742f2fe124d20c78150c195d7c7c Mon Sep 17 00:00:00 2001 From: Giancarlo Buomprisco Date: Thu, 26 Jun 2025 13:43:10 +0700 Subject: [PATCH] chore(docker): add CURL installation in Dockerfile template (#293) --- turbo/generators/templates/docker/Dockerfile.hbs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/turbo/generators/templates/docker/Dockerfile.hbs b/turbo/generators/templates/docker/Dockerfile.hbs index 23859c8b2..4120bbda7 100644 --- a/turbo/generators/templates/docker/Dockerfile.hbs +++ b/turbo/generators/templates/docker/Dockerfile.hbs @@ -17,7 +17,9 @@ COPY . . # Install dependencies using 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 FROM base AS builder