From b52c6305b538d977528e697edb91672182fd0d1f Mon Sep 17 00:00:00 2001 From: root Date: Thu, 11 Jun 2026 16:55:12 -0400 Subject: [PATCH] fix image build --- .codex | 0 Dockerfile.dev | 1 + Dockerfile.production | 1 + 3 files changed, 2 insertions(+) delete mode 100644 .codex diff --git a/.codex b/.codex deleted file mode 100644 index e69de29..0000000 diff --git a/Dockerfile.dev b/Dockerfile.dev index adc0162..49df1cb 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -8,6 +8,7 @@ RUN corepack enable COPY package.json package-lock.json turbo.json tsconfig.base.json ./ COPY apps ./apps COPY packages ./packages +COPY config ./config RUN npm ci --no-fund --no-audit diff --git a/Dockerfile.production b/Dockerfile.production index e1de287..920314f 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -7,6 +7,7 @@ RUN corepack enable && corepack prepare npm@10.5.0 --activate COPY package.json package-lock.json turbo.json tsconfig.base.json ./ COPY apps ./apps COPY packages ./packages +COPY config ./config # These URLs are read by Next.js config during `next build`, so the production # image must bake Docker-network service URLs instead of localhost defaults.