mirror of
https://git.nolog.cz/NoLog.cz/headline.git
synced 2025-01-31 11:53:35 +01:00
7 lines
168 B
Text
7 lines
168 B
Text
|
FROM python:3.9-alpine
|
||
|
ADD . /app/
|
||
|
WORKDIR /app
|
||
|
RUN pip install -r requirements.txt
|
||
|
COPY crontab /etc/cron.d/crontab
|
||
|
RUN crontab /etc/cron.d/crontab
|
||
|
CMD ["crond", "-f"]
|