Skip to content

Commit

Permalink
Dismiss WARN messages about AS casing; add --with-deps flag
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-the-qa committed Aug 28, 2024
1 parent 25659c9 commit b4ea532
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
working-directory: ./webui/apps/eidolon-ui2

- name: Install Playwright browsers
run: pnpm exec playwright install
run: pnpm exec playwright install --with-deps
working-directory: ./webui/apps/eidolon-ui2

- name: Build Docker images
Expand Down
6 changes: 3 additions & 3 deletions webui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ COPY --from=builder /app/out/json/ .
RUN pnpm install

# Build eidolon-client first
FROM base_installer as eidolon_client_builder
FROM base_installer AS eidolon_client_builder
WORKDIR /app/packages/eidolon-client
COPY packages/eidolon-client .
COPY packages/typescript-config /app/packages/typescript-config
RUN pnpm install
RUN pnpm run build

# Build eidolon-components next
FROM eidolon_client_builder as eidolon_components_builder
FROM eidolon_client_builder AS eidolon_components_builder
WORKDIR /app/packages/eidolon-components
COPY packages/eidolon-components .
COPY packages/typescript-config /app/packages/typescript-config
Expand All @@ -33,7 +33,7 @@ RUN pnpm install
RUN pnpm run build

# Build from our project, which will be constant cache misses
FROM base_installer as installer
FROM base_installer AS installer
COPY --from=builder /app/out/full/ .
COPY --from=eidolon_client_builder /app/packages/eidolon-client/dist /app/packages/eidolon-client/dist
COPY --from=eidolon_components_builder /app/packages/eidolon-components/dist /app/packages/eidolon-components/dist
Expand Down

0 comments on commit b4ea532

Please sign in to comment.