mirror of
https://github.com/Gimanh/taskview-community.git
synced 2026-09-11 21:38:56 +00:00
16 lines
185 B
Docker
16 lines
185 B
Docker
FROM node:24.12.0-alpine
|
|
|
|
RUN apk add --no-cache curl
|
|
|
|
RUN npm install pm2 -g
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY ./dist .
|
|
|
|
RUN npm install --omit=dev
|
|
|
|
EXPOSE 1401
|
|
|
|
CMD ["npm", "run", "start"]
|