From 105a469dabc9ef8ed5241bb1f6bb7bc1a9b3cb70 Mon Sep 17 00:00:00 2001 From: kate! Date: Fri, 2 Dec 2022 20:37:30 +0800 Subject: [PATCH] Add build:deps before typecheck to fix missing dependencies --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 8ee6bb04..0aa712d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ COPY . . COPY .env.build .env RUN yarn install --frozen-lockfile +RUN yarn build:deps RUN yarn typecheck RUN yarn build:highmem RUN yarn workspaces focus --production --all