headline/processor/Dockerfile
bain 9800a0825d Add full-text search to the main page. The user can now search for parts
of the changed headline. The search uses each word (text separated by
space) as a separate query (logical OR). The user can use quotes to
specify that they want to keep multiple words as a single query.
2023-08-16 10:28:20 +02:00

8 lines
215 B
Docker

FROM python:3.9-alpine
COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
ADD . /app/
COPY crontab /etc/cron.d/crontab
RUN crontab /etc/cron.d/crontab
CMD ["crond", "-f"]