From 49bd77bec6b34fe282310cfc5ed0bfe260e7f4de Mon Sep 17 00:00:00 2001 From: Stephen Minakian Date: Tue, 15 Jul 2025 22:02:16 -0600 Subject: [PATCH] Try to rebuild and deploy --- Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1b7fd0f..e084b25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,9 +23,5 @@ USER nodejs # Expose port EXPOSE 8080 -# Health check - force IPv4 and increase timeout -# HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \ -# CMD node -e "const http = require('http'); const port = process.env.PORT || 8080; const req = http.get({hostname: '127.0.0.1', port: port, path: '/health', family: 4}, (res) => { process.exit(res.statusCode === 200 ? 0 : 1); }); req.on('error', () => process.exit(1)); req.setTimeout(5000, () => { req.destroy(); process.exit(1); });" - # Start the application CMD ["npm", "start"] \ No newline at end of file