From 3cee3abfeb90b73747d414c75aae49f754e547d1 Mon Sep 17 00:00:00 2001 From: Chaim Date: Mon, 6 Apr 2026 14:28:01 +0000 Subject: [PATCH] fix: add curl for healthcheck, PYTHONUNBUFFERED for logging Co-Authored-By: Claude Opus 4.6 (1M context) --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0eb9e4c..52f4ba4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ COPY dashboard/ . RUN npm run build FROM python:3.12-alpine -RUN apk add --no-cache postgresql-client +RUN apk add --no-cache postgresql-client curl WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt @@ -14,5 +14,6 @@ COPY app_server.py . COPY --from=dashboard-build /dashboard/dist /app/dashboard/dist ENV PORT=8080 ENV DIST_DIR=/app/dashboard/dist +ENV PYTHONUNBUFFERED=1 EXPOSE 8080 CMD ["python", "app_server.py"]