1FROM ghcr.io/music-assistant/server:beta 2 3RUN set -x \ 4 && apk add jq htop openssl 5 6ENV DYLD_LIBRARY_PATH="/usr/lib" 7COPY entrypoint.sh /home 8ENTRYPOINT ["/home/entrypoint.sh"] 9