/
/
/
1FROM ghcr.io/music-assistant/base:latest
2
3# add some additional packages that are useful for debugging
4RUN set -x \
5 && apt-get update \
6 && apt-get install -y jq htop
7
8COPY entrypoint.sh /app/entrypoint.sh
9
10ENTRYPOINT ["/app/entrypoint.sh"]
11