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.
5 lines
133 B
Docker
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/
|