Fix Dockerfile: remove public dir copy (directory does not exist)

This commit is contained in:
Chris Haulmark 2026-05-25 08:37:41 -06:00
parent 368669aa89
commit 674cac6a4d

View file

@ -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