Untested dockerfile and compose

ref #1
This commit is contained in:
2020-11-24 19:46:04 +01:00
parent 0dbac894a1
commit 36192ea5eb
2 changed files with 25 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:alpine
WORKDIR /app
COPY ./package.json ./
RUN npm i --prod
COPY ./ ./
ENTRYPOINT [ "yarn","dev" ]