blob: f83c1c1b3dbce7439544fd515ccf4937b8abf058 (
plain)
1
2
3
4
5
6
7
8
|
FROM python:3.9
WORKDIR /code
COPY fastembed-server.py /workdir/fastembed-server.py
RUN pip install --no-cache-dir --upgrade fastembed fastapi uvicorn
CMD ["python", "/workdir/fastembed-server.py"]
|