Initial commit

This commit is contained in:
virus
2021-07-02 12:57:48 +02:00
commit e0a7231494
6 changed files with 107 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:14-alpine
RUN npm install --silent socket.io
RUN npm install --silent express
RUN mkdir /srv/public/
COPY ./app.js /srv/app.js
COPY ./public/index.html /srv/public/index.html
CMD node /srv/app.js