bain
9800a0825d
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.
8 lines
215 B
Docker
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"]
|