Add Docker files

This commit is contained in:
Daniel 2021-07-06 01:36:33 -07:00
parent 9775db63ce
commit 50ba784b8f
No known key found for this signature in database
GPG Key ID: 771601B78F6934C8
2 changed files with 11 additions and 1 deletions

View File

@ -1 +1,3 @@
node_modules/
node_modules/
storage/
out/

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM node:14
COPY . /korral-interactions
WORKDIR /korral-interactions
RUN mkdir storage
RUN npm i
RUN npm run build
CMD npm start
EXPOSE 3000