From 83bc4cd164cd7d9596783a51de4d186eeed38a56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 31 Jul 2026 06:42:03 +0200 Subject: [PATCH] fix: use JSON notation for healthcheck CMD Discovered by hadolint. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ad80a3837..20eba019c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -70,7 +70,7 @@ LABEL org.opencontainers.image.description="A web-based continuous localization LABEL org.opencontainers.image.licenses="GPL-3.0-or-later" # Increased start period for migrations run -HEALTHCHECK --interval=30s --timeout=3s --start-period=5m CMD /app/bin/health_check +HEALTHCHECK --interval=30s --timeout=3s --start-period=5m CMD ["/app/bin/health_check"] # Use Docker specific settings ENV DJANGO_SETTINGS_MODULE=weblate.settings_docker