remove healthcheck

This commit is contained in:
taogaetz 2025-12-01 19:02:13 -05:00
parent 7a6bd4b92c
commit 41fff38e74

View File

@ -78,11 +78,6 @@ RUN chmod +x /app/docker-entrypoint.sh
USER sveltekit USER sveltekit
EXPOSE 3000 EXPOSE 3000
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD node -e "require('http').get('http://localhost:3000/health', (res) => { process.exit(res.statusCode === 200 ? 0 : 1) })"
ENTRYPOINT ["/app/docker-entrypoint.sh"] ENTRYPOINT ["/app/docker-entrypoint.sh"]
CMD ["node", "server.mjs"] CMD ["node", "server.mjs"]