fix: remove COPY public from web-admin Dockerfile

The public directory doesn't exist in the project, causing
Docker build to fail with "not found" error.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-02-19 05:03:53 -08:00
parent b382e6e469
commit da01571c1b
1 changed files with 0 additions and 1 deletions

View File

@ -20,7 +20,6 @@ ENV NODE_ENV=production
# Copy standalone server output (includes node_modules subset)
COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
COPY --from=builder /app/public ./public
EXPOSE 3000