1FROM ghcr.io/music-assistant/server:beta 2 3RUN set -x \ 4 && apt-get update \ 5 && apt-get install -y --no-install-recommends \ 6 jq htop 7 8COPY entrypoint.sh /home 9ENTRYPOINT ["/home/entrypoint.sh"] 10