genai / Dockerfile
gauravprasadgp's picture
initial commit
d132e19
FROM python:3.11
WORKDIR /app
COPY . /app/
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]