summaryrefslogtreecommitdiff
path: root/supplemental/search/fastembed-api/Dockerfile
blob: c1e0ef51f3aaaa598a1b954d63cfa2a89125e63a (plain)
1
2
3
4
5
6
7
8
9
FROM python:3.9

WORKDIR /code
COPY fastembed-server.py /workdir/fastembed-server.py
COPY requirements.txt /workdir/requirements.txt

RUN pip install -r /workdir/requirements.txt

CMD ["python", "/workdir/fastembed-server.py"]