musicassistant (sha256:8692680781aaed306e0921672ef7bd83ba98ac45016132f22870c25745eaf01a)
Published 2024-10-25 08:51:55 +00:00 by cyrilix
Installation
docker pull git.cyrilix.bzh/cyrilix/musicassistant@sha256:8692680781aaed306e0921672ef7bd83ba98ac45016132f22870c25745eaf01a
sha256:8692680781aaed306e0921672ef7bd83ba98ac45016132f22870c25745eaf01a
About this package
Music Assistant Server/Core
Image Layers
ADD file:5758b97d8301c84a204a6e516241275d785a7cade40b2fb99f01fe122482e283 in / |
CMD ["/bin/sh"] |
ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
ENV LANG=C.UTF-8 |
RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit |
ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305 |
ENV PYTHON_VERSION=3.12.6 |
RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--enable-optimizations') --enable-option-checking=fatal --enable-shared --with-lto --with-system-expat --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" python ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit |
RUN /bin/sh -c set -eux; for src in idle3 pip3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit |
CMD ["python3"] |
ARG TARGETPLATFORM=linux/amd64 |
RUN |1 TARGETPLATFORM=linux/amd64 /bin/sh -c set -x && apk add --no-cache ca-certificates jemalloc curl git wget tzdata sox cifs-utils && apk add --no-cache ffmpeg --repository=https://dl-cdn.alpinelinux.org/alpine/v3.20/community && apk add --no-cache snapcast --repository=https://dl-cdn.alpinelinux.org/alpine/v3.20/community && apk add --no-cache libnfs --repository=https://dl-cdn.alpinelinux.org/alpine/v3.20/community && apk add --no-cache openssl-dev # buildkit |
RUN |1 TARGETPLATFORM=linux/amd64 /bin/sh -c mkdir -p /usr/local/bin/widevine_cdm # buildkit |
COPY widevine_cdm/* /usr/local/bin/widevine_cdm/ # buildkit |
WORKDIR /app |
ENV LD_PRELOAD=/usr/lib/libjemalloc.so.2 |
ENV VIRTUAL_ENV=/app/venv |
RUN |1 TARGETPLATFORM=linux/amd64 /bin/sh -c python3 -m venv $VIRTUAL_ENV && source $VIRTUAL_ENV/bin/activate && pip install --upgrade pip && pip install uv==0.4.17 # buildkit |
RUN |1 TARGETPLATFORM=linux/amd64 /bin/sh -c chmod -R 777 /app && chmod -R 777 /tmp # buildkit |
ENV PATH=/app/venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
WORKDIR /app/venv |
LABEL org.opencontainers.image.title=Music Assistant Base Image org.opencontainers.image.description=Base Image for Music Assistant server - not to be used directly org.opencontainers.image.source=https://github.com/music-assistant/server org.opencontainers.image.authors=The Music Assistant Team org.opencontainers.image.licenses=Apache License 2.0 |
ARG MASS_VERSION=2.2.9 |
ARG TARGETPLATFORM=linux/amd64 |
ADD dist dist # buildkit |
RUN |2 MASS_VERSION=2.2.9 TARGETPLATFORM=linux/amd64 /bin/sh -c uv pip install --no-cache --find-links "https://wheels.home-assistant.io/musllinux/" "music-assistant[server]@dist/music_assistant-${MASS_VERSION}-py3-none-any.whl" # buildkit |
LABEL org.opencontainers.image.title=Music Assistant Server org.opencontainers.image.description=Music Assistant Server/Core org.opencontainers.image.source=https://github.com/music-assistant/server org.opencontainers.image.authors=The Music Assistant Team org.opencontainers.image.documentation=https://github.com/orgs/music-assistant/discussions org.opencontainers.image.licenses=Apache License 2.0 io.hass.version=2.2.9 io.hass.type=addon io.hass.name=Music Assistant Server io.hass.description=Music Assistant Server/Core io.hass.platform=linux/amd64 io.hass.type=addon |
RUN |2 MASS_VERSION=2.2.9 TARGETPLATFORM=linux/amd64 /bin/sh -c rm -rf dist # buildkit |
VOLUME [/data] |
EXPOSE map[8095/tcp:{}] |
ENTRYPOINT ["mass" "--config" "/data"] |
/bin/sh -c /app/venv/bin/pip3 install $(cat /app/venv/lib/python3.12/site-packages/music_assistant/server/providers/*/manifest.json|grep -o -E '"requirements": \[.+\]' | sed 's/"requirements": \[\(.*\)\]$/\1/g' | sed "s/\"//g") && sed -i 's/\("requirements": \)\(\[.*\]\)\(.*\)/\1[]\3/g' /app/venv/lib/python3.12/site-packages/music_assistant/server/providers/*/manifest.json && /app/venv/bin/pip3 install $(cat /app/venv/lib/python3.12/site-packages/music_assistant/server/providers/*/manifest.json | grep "==" | sed "s/.*\"\(.*==.*\)\"/\1/g") && sed -i -r '/==/d' /app/venv/lib/python3.12/site-packages/music_assistant/server/providers/*/*.json && rm -r /root/.cache/ |
Labels
Key | Value |
---|---|
io.buildah.version | 1.37.4 |
io.hass.description | Music Assistant Server/Core |
io.hass.name | Music Assistant Server |
io.hass.platform | linux/amd64 |
io.hass.type | addon |
io.hass.version | 2.2.9 |
org.opencontainers.image.authors | The Music Assistant Team |
org.opencontainers.image.description | Music Assistant Server/Core |
org.opencontainers.image.documentation | https://github.com/orgs/music-assistant/discussions |
org.opencontainers.image.licenses | Apache License 2.0 |
org.opencontainers.image.source | https://github.com/music-assistant/server |
org.opencontainers.image.title | Music Assistant Server |
Details
2024-10-25 08:51:55 +00:00
Versions (14)
View all
Container
2
OCI / Docker
linux/amd64
The Music Assistant Team
Apache License 2.0
217 MiB