fix: 🐛 Add curl to the docker image
All checks were successful
Publish staging Docker image / Push Docker image to Gitea Container Registry (push) Successful in 2m35s

This commit is contained in:
Louis Gallet 2024-04-05 18:21:26 +02:00
parent 1bfc619cc6
commit 2528988847
Signed by: lgallet
GPG Key ID: 84D3DF1528A84511

View File

@ -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}