2020-09-23 19:09:31 +03:00

8 lines
98 B
Docker

FROM node:14.4.0-alpine3.10
USER root
WORKDIR /frontend
COPY . /frontend
RUN yarn
RUN yarn build