chore: update Dockerfile to define PORT environment variable as 3003

This commit is contained in:
john kevin asprec
2026-06-16 22:33:25 +08:00
parent b263f97705
commit a6ef5d5174

View File

@@ -16,7 +16,7 @@ RUN apk add --no-cache dumb-init
RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 nextjs RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 nextjs
COPY --from=builder /app/.next/standalone ./ COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static COPY --from=builder /app/.next/static ./.next/static
ENV NODE_ENV=production HOSTNAME=0.0.0.0 ENV NODE_ENV=production HOSTNAME=0.0.0.0 PORT=3003
EXPOSE 3003 EXPOSE 3003
USER nextjs USER nextjs
ENTRYPOINT ["dumb-init", "--"] ENTRYPOINT ["dumb-init", "--"]