From 563f890cf48a41becd131dfea8a4df14981cc7d9 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Sat, 27 Sep 2025 17:47:23 -0500 Subject: [PATCH] Yarn apparently no longer supports igrnore optional. --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 78395da7..8101e0fa 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -10,7 +10,7 @@ COPY ./frontend /app/frontend RUN corepack enable && corepack prepare yarn@stable --activate -RUN yarn install --ignore-optional +RUN yarn install RUN yarn build