mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
14 lines
275 B
Text
14 lines
275 B
Text
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
|