From fe4613724d479954e67d8428f4d6ef34f260afff Mon Sep 17 00:00:00 2001 From: ChrQR Date: Thu, 30 May 2024 00:35:53 +0200 Subject: [PATCH] apt to apt-get --- scrapers/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapers/Dockerfile b/scrapers/Dockerfile index 865b946..bbeaf96 100644 --- a/scrapers/Dockerfile +++ b/scrapers/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app COPY . /app # Ensure cron is installed -RUN apt get update && apt get install -y cron +RUN apt-get update && apt-get install -y cron # Install any needed packages specified in requirements.txt RUN pip install --no-cache-dir -r requirements.txt