Fix:Window resize build bookshelf

This commit is contained in:
advplyr 2021-12-12 19:48:29 -06:00
parent 0abc9ea416
commit 9452d0eca9
3 changed files with 47 additions and 21 deletions

View file

@ -11,8 +11,9 @@ RUN apk update && apk add --no-cache --update ffmpeg
ENV NODE_ENV=production
COPY --from=build /client/dist /client/dist
COPY index.js index.js
COPY package-lock.json package-lock.json
COPY package.json package.json
COPY server server
RUN npm install --production
RUN npm ci --production
EXPOSE 80
CMD ["npm", "start"]