diff --git a/Dockerfile.web b/Dockerfile.web index 3f85d9e7..4daddde9 100644 --- a/Dockerfile.web +++ b/Dockerfile.web @@ -11,7 +11,8 @@ RUN pnpm fetch --prod WORKDIR /app/packages/web COPY . /app -RUN pnpm build +ENV CI=true +RUN pnpm install && pnpm build #################################### FROM nginx:1.29.1-alpine-slim as web RUN rm -r /usr/share/nginx/html \