1
0

Initial Commit

This commit is contained in:
Christer Warén
2021-01-04 14:16:20 +02:00
commit 5568a22952
20 changed files with 16752 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:13.14.0-alpine
#Dependencies
RUN apk add --virtual .build-deps python make g++ gcc
WORKDIR /usr/src/app
COPY / /usr/src/app/
RUN npm install
CMD [ "npm", "start" ]