diff --git a/cron/Dockerfile b/cron/Dockerfile index 451eb05..3d26344 100644 --- a/cron/Dockerfile +++ b/cron/Dockerfile @@ -2,9 +2,8 @@ FROM python:3.9-slim WORKDIR /app -COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt - COPY . . +RUN pip install --no-cache-dir -r requirements.txt + CMD ["python", "script.py"] \ No newline at end of file