initial commit

This commit is contained in:
2022-05-29 09:42:09 -05:00
commit 95c3219bf6
7 changed files with 2233 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:latest
WORKDIR /usr/src/app
#COPY package*.json ./
#RUN npm install
COPY $CI_PROJECT_DIR /usr/src/app
CMD [ "node", "." ]