fix: Docker build

This commit is contained in:
Tom Moor
2023-02-19 12:22:37 -05:00
parent 618967d6da
commit f63441c15d
2 changed files with 3 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ FROM node:16.14.2-alpine3.15 AS deps
ARG APP_PATH
WORKDIR $APP_PATH
COPY ./package.json ./yarn.lock ./
COPY ./patches ./patches
RUN yarn install --no-optional --frozen-lockfile --network-timeout 1000000 && \
yarn cache clean