10 lines
119 B
Docker
10 lines
119 B
Docker
FROM python:3.11.1-alpine3.17
|
|
|
|
COPY . .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
RUN crontab crontab
|
|
|
|
CMD ["crond", "-f"]
|