From e6b8cbe657abb309b2158e3d94b4b356500a0920 Mon Sep 17 00:00:00 2001 From: yyh <92089059+lyzno1@users.noreply.github.com> Date: Wed, 15 Apr 2026 22:46:50 +0800 Subject: [PATCH] fix(web): include dify-ui workspace package in docker install filter (#35268) --- web/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/web/Dockerfile b/web/Dockerfile index 4971f86f97..8bf016c1ba 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -30,9 +30,8 @@ COPY packages /app/packages # Use packageManager from package.json RUN corepack install -# Install only the web workspace to keep image builds from pulling in -# unrelated workspace dependencies such as e2e tooling. -RUN VITE_GIT_HOOKS=0 pnpm install --filter ./web... --frozen-lockfile +# Install workspace dependencies for the Docker build environment. +RUN VITE_GIT_HOOKS=0 pnpm install --frozen-lockfile # build resources FROM base AS builder