Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,11 @@ jobs:
web:
- ".dockerignore"
- ".github/workflows/build-images.yml"
- "apps/cli/package.json"
- "apps/docs/package.json"
- "contracts/**"
- "package.json"
- "patches/**"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"
- "apps/web/**"
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ jobs:
- "infrastructure/images/**"
- "infrastructure/keycloak/**"
- "infrastructure/postgres-rag/**"
- "patches/**"
- "apps/web/Dockerfile"
- "apps/web/nginx.conf"
- "apps/docs/Dockerfile"
Expand Down Expand Up @@ -542,6 +543,13 @@ jobs:
docker buildx build --check --file infrastructure/keycloak/Dockerfile .
docker buildx build --check --file infrastructure/postgres-rag/Dockerfile .

- name: Build web Docker dependency contract
run: >-
docker buildx build
--file apps/web/Dockerfile
--target build
.

- name: Test web forwarded-port handling
run: infrastructure/deployment/scripts/test-web-forwarded-port.sh

Expand Down
1 change: 1 addition & 0 deletions apps/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ WORKDIR /workspace
RUN corepack enable

COPY package.json pnpm-workspace.yaml pnpm-lock.yaml ./
COPY patches patches
COPY apps/cli/package.json apps/cli/package.json
COPY apps/web/package.json apps/web/package.json
COPY apps/docs/package.json apps/docs/package.json
Expand Down