Files
Vulture/VContainers/VNode/Containerfile

12 lines
248 B
Plaintext
Raw Normal View History

2025-11-16 18:54:51 +01:00
FROM docker.io/keymetrics/pm2:latest-alpine
## Bundle APP files
COPY VNode src
#COPY package.json .
COPY VContainers/VNode/pm2.json .
#
## Install app dependencies
RUN cd /src && npm install
CMD [ "pm2-runtime", "start", "pm2.json" ]
#CMD [ "sh"]