UFoP-API / Dockerfile
Ufoptg's picture
Update Dockerfile
458fff8 verified
raw
history blame
No virus
460 Bytes
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
RUN chown -R 1000:0 .
RUN chmod 777 .
RUN chown -R 1000:0 /usr
RUN chmod 777 /usr
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]