mirror of
https://gitlab.durp.info/durfy/apps/durpot.git
synced 2026-05-07 16:00:33 -05:00
7 lines
132 B
Text
7 lines
132 B
Text
|
|
FROM node:latest
|
||
|
|
WORKDIR /usr/src/app
|
||
|
|
#COPY package*.json ./
|
||
|
|
#RUN npm install
|
||
|
|
COPY $CI_PROJECT_DIR /usr/src/app
|
||
|
|
CMD [ "node", "." ]
|