CoolFace
Apppublic

agent404/ChatMusician-dev

sourceHugging Faceccupdated 3y agoView on Hugging Face
0likes
Dockerfile15 linesDownload Raw Back to root
1FROM python:3.92 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6 7RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt8RUN apt update && apt install -y fuse libfuse29 10COPY . .11RUN pip install --no-cache-dir --upgrade -r ./requirements.txt12RUN chmod +x MuseScore-4.1.1.232071203-x86_64.AppImage13RUN mkdir -m 700 flagged14 15CMD ["uvicorn", "app:gradio_app", "--host", "0.0.0.0", "--port", "7860"]