2022-08-25 15:10:08 +02:00
|
|
|
FROM python:3.9-alpine
|
2023-08-16 10:28:20 +02:00
|
|
|
COPY ./requirements.txt /app/requirements.txt
|
2022-08-25 15:10:08 +02:00
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install -r requirements.txt
|
2023-08-16 10:28:20 +02:00
|
|
|
ADD . /app/
|
2022-08-25 15:10:08 +02:00
|
|
|
COPY crontab /etc/cron.d/crontab
|
|
|
|
RUN crontab /etc/cron.d/crontab
|
2023-08-16 10:28:20 +02:00
|
|
|
CMD ["crond", "-f"]
|