ChatMusician-dev / Dockerfile
agent404's picture
Update Dockerfile
a0dcd52 verified
raw
history blame
358 Bytes
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"]