mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
Some checks are pending
Build and push Docker DEV image / build ([self-hosted arm64], linux/arm/v7) (push) Waiting to run
Build and push Docker DEV image / build ([self-hosted arm64], linux/arm64) (push) Waiting to run
Build and push Docker DEV image / build ([self-hosted x64], linux/amd64) (push) Waiting to run
Build and push Docker DEV image / merge (push) Blocked by required conditions
Build and push Docker DEV image / rerun-failed-jobs (push) Blocked by required conditions
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
|