api-chatbot / Dockerfile
OnlyBiggg
first commit
d73e455
raw
history blame contribute delete
168 Bytes
FROM python:3.9
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]