Spaces:
Sleeping
Sleeping
File size: 725 Bytes
c2f178d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | FROM --platform=linux/amd64 python:3.10-slim
ENV DEBIAN_FRONTEND=noninteractive
FROM --platform=linux/amd64 python:3.10-slim
# Install dependencies needed for MuseScore AppImage
RUN apt-get update && apt-get install -y \
wget \
libqt5gui5 \
libqt5svg5 \
libpulse0 \
fontconfig \
fuse \
&& apt-get clean
# Download and extract MuseScore 3.6.2 AppImage
WORKDIR /tmp
RUN wget https://github.com/musescore/MuseScore/releases/download/v3.6.2/MuseScore-3.6.2.548021370-x86_64.AppImage -O mscore.AppImage \
&& chmod +x mscore.AppImage \
&& ./mscore.AppImage --appimage-extract \
&& mv squashfs-root /opt/mscore \
&& ln -s /opt/mscore/AppRun /usr/bin/mscore \
&& rm mscore.AppImage
|