Langchain-FastAPI / Dockerfile
wrdias's picture
Update Dockerfile
ede9515 verified
raw
history blame contribute delete
204 Bytes
FROM python:3.8.10-slim
WORKDIR /
COPY ./requirements.txt /requirements.txt
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "main:/", "--host", "0.0.0.0", "--port", "8000"]