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