Spaces:
Running
Running
File size: 461 Bytes
848d009 e8c5515 848d009 |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM ubuntu
WORKDIR /home/ubuntu
COPY . .
RUN <<EOF
apt update
apt install -y --no-install-recommends python3-pip imagemagick ffmpeg python3-yaml uvicorn python3-requests python3-multipart python3-loguru
sed -i '/<policy domain="path" rights="none" pattern="@\*"/d' /etc/ImageMagick-6/policy.xml
python3 -m pip install --no-cache-dir -r requirements.txt --break-system-packages
EOF
ENTRYPOINT ["uvicorn", "app.asgi:app", "--host", "0.0.0.0", "--port", "7860"] |