diff --git a/.yarn/install-state.gz b/.yarn/install-state.gz index 249c7355..cfdfcef3 100644 Binary files a/.yarn/install-state.gz and b/.yarn/install-state.gz differ diff --git a/Dockerfile b/Dockerfile index 268d9f45..d1fc552f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,8 @@ WORKDIR /usr/src/app COPY package.json ./ COPY yarn.lock ./ +RUN corepack enable + RUN yarn install COPY . . @@ -22,7 +24,10 @@ WORKDIR /usr/src/app COPY package.json ./ COPY yarn.lock ./ -RUN yarn install --ignore-scripts --production=true +RUN corepack enable + +RUN yarn workspaces focus --production +RUN yarn install --mode=skip-build COPY . .