feat: health check for backend in docker-compose;

feat: go dockerfile preinstalls curl;
refactor: reduced go image size by using a 2 stage dockerfile;
refactor: switch frontend dockerfile
This commit is contained in:
2025-06-17 21:34:55 +03:00
parent 367647a8df
commit b4746cf18f
4 changed files with 53 additions and 19 deletions

View File

@@ -7,5 +7,5 @@ import (
)
func HealthCheck(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"status": "ok"})
c.JSON(http.StatusOK, gin.H{"healthy": true})
}