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