2020-11-11 19:12:15 +03:00

8 lines
134 B
Docker

FROM node:alpine
WORKDIR /frontend
COPY package.json /frontend/package.json
RUN yarn
COPY . /frontend
RUN yarn codegen
RUN yarn build