Spaces:
Runtime error
Runtime error
File size: 358 Bytes
a0dcd52 4c43480 a76beb8 4c43480 a0dcd52 4c43480 3ec2885 4c43480 c01c0a1 4c43480 efb2746 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.9
USER root
WORKDIR /code
RUN apt update && apt install --quiet -y fuse libfuse2 fonts-dejavu python3-pip inkscape
COPY . .
RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
RUN chmod +x MuseScore-4.1.1.232071203-x86_64.AppImage
RUN mkdir -m 700 flagged
CMD ["uvicorn", "app:gradio_app", "--host", "0.0.0.0", "--port", "7860"] |