Initial commit.

This commit is contained in:
2021-05-18 20:39:18 +02:00
commit cb984a7376
7 changed files with 927 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:14
WORKDIR /usr/src/app
COPY package*.json ./
COPY main.js ./
RUN npm install
EXPOSE 3000
CMD [ "node", "main.js" ]