diff --git a/scrapers/Dockerfile b/scrapers/Dockerfile index 93c54b5..5718354 100644 --- a/scrapers/Dockerfile +++ b/scrapers/Dockerfile @@ -5,8 +5,8 @@ FROM python:3.12-slim WORKDIR /app # Copy the script and requirements.txt into the container at /app -COPY ./jobindex.py /app/ -COPY ./requirements.txt /app/ +COPY jobindex.py . +COPY requirements.txt . # Install the required Python packages RUN pip install -r requirements.txt