From 14cfc63afdde251fba485f31c4144970946b3c33 Mon Sep 17 00:00:00 2001 From: christian Date: Sat, 1 Jun 2024 18:04:51 +0200 Subject: [PATCH] triy to fix script and requirements not being copied --- scrapers/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scrapers/Dockerfile b/scrapers/Dockerfile index 277114a..93c54b5 100644 --- a/scrapers/Dockerfile +++ b/scrapers/Dockerfile @@ -1,12 +1,12 @@ # Use the official Python image from the Docker Hub -FROM python:3.9-slim-buster +FROM python:3.12-slim # Set the working directory inside the container WORKDIR /app # Copy the script and requirements.txt into the container at /app -COPY jobindex.py /app/ -COPY requirements.txt /app/ +COPY ./jobindex.py /app/ +COPY ./requirements.txt /app/ # Install the required Python packages RUN pip install -r requirements.txt