headline/processor/Dockerfile

7 lines
168 B
Text
Raw Normal View History

2022-08-25 15:10:08 +02:00
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"]