headline/processor/Dockerfile

7 lines
No EOL
168 B
Docker

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"]