chore(docker): include new workspace packages in builds
This commit is contained in:
parent
e9b33fb518
commit
32f8f7ccf5
@ -14,6 +14,7 @@
|
|||||||
- 2026-02-14: Added pre-commit token auto-generation (`lint-staged` for `packages/design-tokens`)
|
- 2026-02-14: Added pre-commit token auto-generation (`lint-staged` for `packages/design-tokens`)
|
||||||
- 2026-02-14: Added `@bytelyst/blob` shared package (Blob client helpers + SAS URL generation)
|
- 2026-02-14: Added `@bytelyst/blob` shared package (Blob client helpers + SAS URL generation)
|
||||||
- 2026-02-14: Added `@bytelyst/monitoring` shared package (health-check aggregation)
|
- 2026-02-14: Added `@bytelyst/monitoring` shared package (health-check aggregation)
|
||||||
|
- 2026-02-14: Attempted `docker compose build` (fails: disk is full; free space before retrying)
|
||||||
|
|
||||||
## Prereqs (Local)
|
## Prereqs (Local)
|
||||||
|
|
||||||
@ -55,7 +56,7 @@ Design token follow-ups
|
|||||||
|
|
||||||
CI + docker compose (home network)
|
CI + docker compose (home network)
|
||||||
|
|
||||||
- [ ] **5.16** Run `docker compose build` (was blocked by corporate proxy SSL)
|
- [ ] **5.16** Run `docker compose build` (blocked: disk is full on this machine; prior blocker was corporate proxy SSL)
|
||||||
- [ ] **5.17** Run `docker compose up -d` (requires 5.16)
|
- [ ] **5.17** Run `docker compose up -d` (requires 5.16)
|
||||||
|
|
||||||
Full-stack verification + E2E scenarios
|
Full-stack verification + E2E scenarios
|
||||||
|
|||||||
@ -9,11 +9,13 @@ COPY package.json pnpm-workspace.yaml pnpm-lock.yaml tsconfig.base.json ./
|
|||||||
# Copy all package.json files (pnpm needs these for workspace resolution)
|
# Copy all package.json files (pnpm needs these for workspace resolution)
|
||||||
COPY packages/errors/package.json packages/errors/
|
COPY packages/errors/package.json packages/errors/
|
||||||
COPY packages/cosmos/package.json packages/cosmos/
|
COPY packages/cosmos/package.json packages/cosmos/
|
||||||
|
COPY packages/blob/package.json packages/blob/
|
||||||
COPY packages/config/package.json packages/config/
|
COPY packages/config/package.json packages/config/
|
||||||
COPY packages/auth/package.json packages/auth/
|
COPY packages/auth/package.json packages/auth/
|
||||||
COPY packages/api-client/package.json packages/api-client/
|
COPY packages/api-client/package.json packages/api-client/
|
||||||
COPY packages/fastify-core/package.json packages/fastify-core/
|
COPY packages/fastify-core/package.json packages/fastify-core/
|
||||||
COPY packages/logger/package.json packages/logger/
|
COPY packages/logger/package.json packages/logger/
|
||||||
|
COPY packages/monitoring/package.json packages/monitoring/
|
||||||
COPY packages/react-auth/package.json packages/react-auth/
|
COPY packages/react-auth/package.json packages/react-auth/
|
||||||
COPY packages/design-tokens/package.json packages/design-tokens/
|
COPY packages/design-tokens/package.json packages/design-tokens/
|
||||||
COPY packages/testing/package.json packages/testing/
|
COPY packages/testing/package.json packages/testing/
|
||||||
|
|||||||
@ -12,11 +12,13 @@ COPY package.json pnpm-workspace.yaml pnpm-lock.yaml tsconfig.base.json ./
|
|||||||
# Copy all package.json files (pnpm needs these for workspace resolution)
|
# Copy all package.json files (pnpm needs these for workspace resolution)
|
||||||
COPY packages/errors/package.json packages/errors/
|
COPY packages/errors/package.json packages/errors/
|
||||||
COPY packages/cosmos/package.json packages/cosmos/
|
COPY packages/cosmos/package.json packages/cosmos/
|
||||||
|
COPY packages/blob/package.json packages/blob/
|
||||||
COPY packages/config/package.json packages/config/
|
COPY packages/config/package.json packages/config/
|
||||||
COPY packages/auth/package.json packages/auth/
|
COPY packages/auth/package.json packages/auth/
|
||||||
COPY packages/api-client/package.json packages/api-client/
|
COPY packages/api-client/package.json packages/api-client/
|
||||||
COPY packages/fastify-core/package.json packages/fastify-core/
|
COPY packages/fastify-core/package.json packages/fastify-core/
|
||||||
COPY packages/logger/package.json packages/logger/
|
COPY packages/logger/package.json packages/logger/
|
||||||
|
COPY packages/monitoring/package.json packages/monitoring/
|
||||||
COPY packages/react-auth/package.json packages/react-auth/
|
COPY packages/react-auth/package.json packages/react-auth/
|
||||||
COPY packages/design-tokens/package.json packages/design-tokens/
|
COPY packages/design-tokens/package.json packages/design-tokens/
|
||||||
COPY packages/testing/package.json packages/testing/
|
COPY packages/testing/package.json packages/testing/
|
||||||
|
|||||||
@ -9,11 +9,13 @@ COPY package.json pnpm-workspace.yaml pnpm-lock.yaml tsconfig.base.json ./
|
|||||||
# Copy all package.json files (pnpm needs these for workspace resolution)
|
# Copy all package.json files (pnpm needs these for workspace resolution)
|
||||||
COPY packages/errors/package.json packages/errors/
|
COPY packages/errors/package.json packages/errors/
|
||||||
COPY packages/cosmos/package.json packages/cosmos/
|
COPY packages/cosmos/package.json packages/cosmos/
|
||||||
|
COPY packages/blob/package.json packages/blob/
|
||||||
COPY packages/config/package.json packages/config/
|
COPY packages/config/package.json packages/config/
|
||||||
COPY packages/auth/package.json packages/auth/
|
COPY packages/auth/package.json packages/auth/
|
||||||
COPY packages/api-client/package.json packages/api-client/
|
COPY packages/api-client/package.json packages/api-client/
|
||||||
COPY packages/fastify-core/package.json packages/fastify-core/
|
COPY packages/fastify-core/package.json packages/fastify-core/
|
||||||
COPY packages/logger/package.json packages/logger/
|
COPY packages/logger/package.json packages/logger/
|
||||||
|
COPY packages/monitoring/package.json packages/monitoring/
|
||||||
COPY packages/react-auth/package.json packages/react-auth/
|
COPY packages/react-auth/package.json packages/react-auth/
|
||||||
COPY packages/design-tokens/package.json packages/design-tokens/
|
COPY packages/design-tokens/package.json packages/design-tokens/
|
||||||
COPY packages/testing/package.json packages/testing/
|
COPY packages/testing/package.json packages/testing/
|
||||||
|
|||||||
@ -9,11 +9,13 @@ COPY package.json pnpm-workspace.yaml pnpm-lock.yaml tsconfig.base.json ./
|
|||||||
# Copy all package.json files (pnpm needs these for workspace resolution)
|
# Copy all package.json files (pnpm needs these for workspace resolution)
|
||||||
COPY packages/errors/package.json packages/errors/
|
COPY packages/errors/package.json packages/errors/
|
||||||
COPY packages/cosmos/package.json packages/cosmos/
|
COPY packages/cosmos/package.json packages/cosmos/
|
||||||
|
COPY packages/blob/package.json packages/blob/
|
||||||
COPY packages/config/package.json packages/config/
|
COPY packages/config/package.json packages/config/
|
||||||
COPY packages/auth/package.json packages/auth/
|
COPY packages/auth/package.json packages/auth/
|
||||||
COPY packages/api-client/package.json packages/api-client/
|
COPY packages/api-client/package.json packages/api-client/
|
||||||
COPY packages/fastify-core/package.json packages/fastify-core/
|
COPY packages/fastify-core/package.json packages/fastify-core/
|
||||||
COPY packages/logger/package.json packages/logger/
|
COPY packages/logger/package.json packages/logger/
|
||||||
|
COPY packages/monitoring/package.json packages/monitoring/
|
||||||
COPY packages/react-auth/package.json packages/react-auth/
|
COPY packages/react-auth/package.json packages/react-auth/
|
||||||
COPY packages/design-tokens/package.json packages/design-tokens/
|
COPY packages/design-tokens/package.json packages/design-tokens/
|
||||||
COPY packages/testing/package.json packages/testing/
|
COPY packages/testing/package.json packages/testing/
|
||||||
|
|||||||
@ -9,11 +9,13 @@ COPY package.json pnpm-workspace.yaml pnpm-lock.yaml tsconfig.base.json ./
|
|||||||
# Copy all package.json files (pnpm needs these for workspace resolution)
|
# Copy all package.json files (pnpm needs these for workspace resolution)
|
||||||
COPY packages/errors/package.json packages/errors/
|
COPY packages/errors/package.json packages/errors/
|
||||||
COPY packages/cosmos/package.json packages/cosmos/
|
COPY packages/cosmos/package.json packages/cosmos/
|
||||||
|
COPY packages/blob/package.json packages/blob/
|
||||||
COPY packages/config/package.json packages/config/
|
COPY packages/config/package.json packages/config/
|
||||||
COPY packages/auth/package.json packages/auth/
|
COPY packages/auth/package.json packages/auth/
|
||||||
COPY packages/api-client/package.json packages/api-client/
|
COPY packages/api-client/package.json packages/api-client/
|
||||||
COPY packages/fastify-core/package.json packages/fastify-core/
|
COPY packages/fastify-core/package.json packages/fastify-core/
|
||||||
COPY packages/logger/package.json packages/logger/
|
COPY packages/logger/package.json packages/logger/
|
||||||
|
COPY packages/monitoring/package.json packages/monitoring/
|
||||||
COPY packages/react-auth/package.json packages/react-auth/
|
COPY packages/react-auth/package.json packages/react-auth/
|
||||||
COPY packages/design-tokens/package.json packages/design-tokens/
|
COPY packages/design-tokens/package.json packages/design-tokens/
|
||||||
COPY packages/testing/package.json packages/testing/
|
COPY packages/testing/package.json packages/testing/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user