You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM node:18-alpine as server-dependencies
|
|
|
|
RUN apk -U upgrade \
|
|
&& apk add build-base python3 \
|
|
--no-cache
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json ./
|
|
|
|
RUN npm install npm@latest --global \
|
|
&& npm install pnpm --global \
|
|
&& pnpm import \
|
|
&& pnpm install
|