Added Dockerfile

This commit is contained in:
Dmitriy Shishkov 2020-09-23 19:09:31 +03:00
parent da5620519f
commit 50647825c6

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM node:14.4.0-alpine3.10
USER root
WORKDIR /frontend
COPY . /frontend
RUN yarn
RUN yarn build