diff --git a/docker/app/Dockerfile b/docker/app/Dockerfile index c835dc9875..74595a870d 100644 --- a/docker/app/Dockerfile +++ b/docker/app/Dockerfile @@ -28,4 +28,4 @@ CMD ["java", "-cp", "app:app/lib/*", "io.tolgee.Application"] # Health check to ensure the app is up and running HEALTHCHECK --interval=10s --timeout=3s --retries=20 \ - CMD curl -f http://127.0.0.1:$HEALTHCHECK_PORT/actuator/health || exit 1 + CMD wget --spider -q "http://127.0.0.1:$HEALTHCHECK_PORT/actuator/health" || exit 1