mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 17:25:03 +03:00
9 lines
156 B
Docker
9 lines
156 B
Docker
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
|