From a38aa4cd83dceb19f2464d8e426ef243f040822e Mon Sep 17 00:00:00 2001 From: christian Date: Sat, 1 Jun 2024 18:07:45 +0200 Subject: [PATCH] copy files --- scrapers/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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