added curl to OCI for healthcheck

This commit is contained in:
2026-08-11 19:19:46 +02:00
parent 4ac1edfa31
commit 3ef462d304
+2
View File
@@ -6,6 +6,8 @@ COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/* # install curl for healthcheck
COPY . .
CMD [ "python", "./app.py" ]