Add curl to Dockerfile

This commit is contained in:
skidoodle 2024-12-31 01:36:36 +01:00 committed by GitHub
parent 8e37da9463
commit d2e5941e27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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"