Some deployment fixes

This commit is contained in:
Dmitriy Shishkov 2020-11-11 19:12:15 +03:00
parent 2634f64d1f
commit 65a6ca3e03
2 changed files with 6 additions and 4 deletions

1
.dockerignore Normal file
View File

@ -0,0 +1 @@
node_modules/

View File

@ -1,6 +1,7 @@
FROM node:14.4.0-alpine3.10
USER root
FROM node:alpine
WORKDIR /frontend
COPY . /frontend
COPY package.json /frontend/package.json
RUN yarn
RUN yarn build
COPY . /frontend
RUN yarn codegen
RUN yarn build