ohamlab-ai-toolkit / Dockerfile
rahul7star's picture
Update Dockerfile
2534d77 verified
raw
history blame
191 Bytes
FROM python:3.10
RUN apt update && apt install -y git
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]