From 674cac6a4d47fb5b033cb15274b6b46af9fdcdca Mon Sep 17 00:00:00 2001 From: Chris Haulmark Date: Mon, 25 May 2026 08:37:41 -0600 Subject: [PATCH] Fix Dockerfile: remove public dir copy (directory does not exist) --- frontend/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 85edd6c..3da48c9 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -23,7 +23,6 @@ RUN npm ci --only=production # Copy built assets from build stage COPY --from=build --chown=appuser:appgroup /app/.next ./.next -COPY --from=build --chown=appuser:appgroup /app/public ./public COPY --from=build --chown=appuser:appgroup /app/next.config.js ./next.config.js ENV NODE_ENV=production