MIA / Dockerfile
SharryOG's picture
Create Dockerfile
aa6dca6 verified
raw
history blame
No virus
165 Bytes
FROM python:3.11
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]