fix: Ensure public/ dir exists in Docker build for levis-holzbau
All checks were successful
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / go-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 38s
CI / test-python-voice (push) Successful in 35s
CI / test-bqas (push) Successful in 38s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-03-11 10:06:54 +01:00
parent 0770ff499b
commit f9b475db8f

View File

@@ -9,6 +9,7 @@ FROM base AS builder
WORKDIR /app WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules COPY --from=deps /app/node_modules ./node_modules
COPY . . COPY . .
RUN mkdir -p public
RUN npm run build RUN npm run build
FROM base AS runner FROM base AS runner