From b90133f7739543123f2bd136546e22bd89f23638 Mon Sep 17 00:00:00 2001 From: "Till (Cowork)" Date: Sun, 28 Jun 2026 16:42:49 +0000 Subject: [PATCH] =?UTF-8?q?Crawler-Dockerfile:=20curl=20f=C3=BCr=20Coolify?= =?UTF-8?q?-Healthcheck=20(python:slim=20hatte=20keins=20->=20Rollback);?= =?UTF-8?q?=20behebt=20Deploy=20der=2013=20offiziellen=20Quellen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- livecrawler/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/livecrawler/Dockerfile b/livecrawler/Dockerfile index 3d2f514..1cedb75 100644 --- a/livecrawler/Dockerfile +++ b/livecrawler/Dockerfile @@ -1,5 +1,6 @@ FROM python:3.11-slim WORKDIR /app +RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/* COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY . .