Add curl to Dockerfile

This commit is contained in:
2024-12-31 01:36:36 +01:00
committed by GitHub
parent 8e37da9463
commit d2e5941e27

View File

@@ -2,7 +2,7 @@ FROM node:20-alpine AS base
### Dependencies ###
FROM base AS deps
RUN apk add --no-cache libc6-compat git
RUN apk add --no-cache libc6-compat git curl
# Setup pnpm environment
ENV PNPM_HOME="/pnpm"