Cleaned up Glitch-specific

This commit is contained in:
2020-04-13 13:17:44 +01:00
parent 7f5ec3e395
commit 1ef7b12f1e
5 changed files with 24 additions and 1412 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:12
WORKDIR /app
ADD package.json .
RUN npm install
ADD . .
ENV PORT=80
EXPOSE 80
CMD npm start