Update dockerfile for generating client

This commit is contained in:
advplyr 2022-05-25 10:26:21 -05:00
parent 68efd30a54
commit d8df9a9dff

View File

@ -2,7 +2,7 @@
FROM node:16-alpine AS build
WORKDIR /client
COPY /client /client
RUN npm install
RUN npm ci && npm cache clean --force
RUN npm run generate
### STAGE 1: Build server ###