diff --git a/server/Dockerfile b/server/Dockerfile index ba111b51..cfda4550 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16-alpine as dependencies +FROM node:17-alpine as dependencies RUN apk add --no-cache g++ curl make python3 \ && curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm @@ -11,7 +11,7 @@ COPY ./server/package.json ./server/package.json RUN pnpm install --frozen-lockfile -FROM node:16-alpine as builder +FROM node:17-alpine as builder RUN apk add --no-cache g++ curl make python3 \ && curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm