refactor docker deployment build contexts

This commit is contained in:
dirtydishes 2026-04-27 04:13:47 -04:00
parent 25e3097bb1
commit 3b0c796ec7
9 changed files with 365 additions and 22 deletions

View file

@ -4,7 +4,12 @@ WORKDIR /app
ENV NODE_ENV=production
COPY . .
COPY --from=workspace package.json ./package.json
COPY --from=workspace bun.lock ./bun.lock
COPY --from=workspace tsconfig.base.json ./tsconfig.base.json
COPY --from=services . ./services
COPY --from=packages . ./packages
COPY --from=apps . ./apps
RUN bun install --frozen-lockfile