(feat) VContainers : build VNode

This commit is contained in:
2025-11-16 18:54:51 +01:00
parent 768f42dff4
commit bb791ed2f4
2 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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"]