diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2008dfe --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM node:14.4.0-alpine3.10 +USER root +WORKDIR /frontend +COPY . /frontend +RUN yarn +RUN yarn build +