chore(Dockerfile): add python dependency for builder

This commit is contained in:
Nicolas Meienberger 2024-01-08 07:48:14 +01:00
parent 642a66f7fb
commit c22d8e102d
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ FROM node:${NODE_VERSION}-alpine${ALPINE_VERSION} AS node_base
FROM node_base AS builder_base
RUN apk add --no-cache python3 make g++
RUN npm install pnpm -g
# BUILDER

View File

@ -3,6 +3,7 @@ ARG ALPINE_VERSION="3.18"
FROM node:${NODE_VERSION}-alpine${ALPINE_VERSION}
RUN apk add --no-cache python3 make g++
RUN npm install pnpm -g
WORKDIR /app