From 01f8f42dc8cbfb98c40e7890032d6a9d6b8a0c19 Mon Sep 17 00:00:00 2001 From: Anton Dubovik Date: Fri, 6 Dec 2024 12:16:16 +0000 Subject: [PATCH] fix: reverted Docker healthcheck (#80) --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b4aa70d..028a067 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,9 +49,6 @@ ENV PATH="/opt/venv/bin:$PATH" USER appuser -HEALTHCHECK --interval=10s --timeout=5s --start-period=30s --retries=6 \ - CMD wget --no-verbose --tries=1 --spider http://localhost:5000/health || exit 1 - # During debugging, this entry point will be overridden. For more information, please refer to https://aka.ms/vscode-docker-python-debug EXPOSE 5000 CMD ["uvicorn", "aidial_analytics_realtime.app:app", "--host", "0.0.0.0", "--port", "5000"]