rag-chatbot / Dockerfile
Al1Abdullah's picture
Update Dockerfile
e61953e verified
raw
history blame contribute delete
247 Bytes
FROM python:3.9
WORKDIR /code
COPY ./app/requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
WORKDIR /code/app
CMD ["uvicorn", "index:app", "--host", "0.0.0.0", "--port", "7860"]