Update Dockerfile

copy next.config.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Znmin
2025-12-19 23:30:41 +01:00
committed by GitHub
parent 5a3042c606
commit 72b64cc174

View File

@@ -33,6 +33,7 @@ RUN addgroup -S appuser && adduser -S appuser -G appuser
COPY --from=build /app/.next ./.next COPY --from=build /app/.next ./.next
COPY --from=build /app/package.json ./package.json COPY --from=build /app/package.json ./package.json
COPY --from=build /app/package-lock.json ./package-lock.json COPY --from=build /app/package-lock.json ./package-lock.json
COPY --from=build /app/next.config.ts ./next.config.ts
COPY --from=build /app/public ./public COPY --from=build /app/public ./public
COPY --from=build /app/node_modules ./node_modules COPY --from=build /app/node_modules ./node_modules
RUN chown -R appuser:appuser /app RUN chown -R appuser:appuser /app