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