From 0be3c3885491ab4b594d331e74e7ec0f6ed3caa8 Mon Sep 17 00:00:00 2001 From: giteaadmin Date: Wed, 27 Aug 2025 15:28:16 -0400 Subject: [PATCH] fix: don't need to expose 3000 in dev --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0bf6e04..95e2810 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,9 +58,6 @@ COPY --chown=appuser:appgroup healthcheck.js . COPY --chown=root:root entrypoint.sh /usr/local/bin/ RUN chmod +x /usr/local/bin/entrypoint.sh -# Expose the port the server runs on -EXPOSE 3000 - # Add a healthcheck to ensure the container is running correctly. HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \ CMD ["su-exec", "appuser", "node", "healthcheck.js"]