ryuzaki-api / Dockerfile
randydev's picture
Update Dockerfile
af0418f verified
raw
history blame
431 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
RUN mkdir -p uploads && chmod 777 uploads
COPY . /app
RUN pip3 install --upgrade pip setuptools==59.6.0
RUN pip3 install -r requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]