8 lines
134 B
Docker
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
|