Zai / Dockerfile
huynhkimthien's picture
Update Dockerfile
8652090 verified
raw
history blame contribute delete
269 Bytes
FROM python:3.10
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install python-multipart
COPY . .
RUN apt update && apt install -y ffmpeg
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]