change port 4023 to 4024

This commit is contained in:
Kar k1
2025-08-30 18:28:24 +05:30
parent 7219108342
commit f29889df9a
12 changed files with 27 additions and 27 deletions

View File

@@ -36,7 +36,7 @@ WORKDIR /app
ENV NODE_ENV=production \
NEXT_TELEMETRY_DISABLED=1 \
PORT=4023 \
PORT=4024 \
HOSTNAME=0.0.0.0
# Create a non-root user
@@ -52,6 +52,6 @@ COPY --from=builder /app/public ./public
RUN chown -R nextjs:nodejs /app
USER nextjs
EXPOSE 4023
EXPOSE 4024
CMD ["node", "server.js"]