From 25289888479a63962e2b1669964d8ac273dd6f32 Mon Sep 17 00:00:00 2001 From: Louis Gallet Date: Fri, 5 Apr 2024 18:21:26 +0200 Subject: [PATCH] fix: :bug: Add curl to the docker image --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5f01123..d9c55a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,9 @@ FROM node:${NODE_VERSION}-alpine # Use production node environment by default. ENV NODE_ENV production +# Install curl +RUN apk add --no-cache curl + # Install pnpm. RUN --mount=type=cache,target=/root/.npm \ npm install -g pnpm@${PNPM_VERSION}