mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 12:49:43 +02:00
8 lines
156 B
Text
8 lines
156 B
Text
FROM node:18-alpine
|
|
|
|
RUN apk -U upgrade \
|
|
&& apk add bash build-base python3 xdg-utils --no-cache \
|
|
&& npm install npm --global
|
|
|
|
USER node
|
|
WORKDIR /app
|