headline/view/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

5 lines
133 B
Docker

FROM python:slim-bullseye
COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
ADD . /app/