Spaces:
Running
Running
File size: 378 Bytes
2f158fd 1f5c55e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
FROM rendyprojects/python:latest
WORKDIR /app/
RUN apt -qq update
RUN apt -qq install -y --no-install-recommends \
curl \
git \
gnupg2 \
unzip \
wget \
python3-pip \
ffmpeg \
neofetch
COPY . .
RUN pip3 install --upgrade pip setuptools
RUN pip3 install -r requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|