Merge pull request #104 from linuxserver/3.18-nightly

This commit is contained in:
Adam 2023-08-25 11:26:27 +01:00 committed by GitHub
commit 26e605b50d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 19 additions and 16 deletions

View file

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1 # syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-alpine:3.17 FROM ghcr.io/linuxserver/baseimage-alpine:3.18
# set version label # set version label
ARG BUILD_DATE ARG BUILD_DATE
@ -11,7 +11,7 @@ LABEL maintainer="aptalca"
RUN \ RUN \
echo "**** install build packages ****" && \ echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies --upgrade \ apk add --no-cache --virtual=build-dependencies \
build-base \ build-base \
cairo-dev \ cairo-dev \
cargo \ cargo \
@ -26,7 +26,7 @@ RUN \
openjpeg-dev \ openjpeg-dev \
python3-dev && \ python3-dev && \
echo "**** install runtime packages ****" && \ echo "**** install runtime packages ****" && \
apk add --no-cache --upgrade \ apk add --no-cache \
chromaprint \ chromaprint \
expat \ expat \
ffmpeg \ ffmpeg \
@ -36,6 +36,7 @@ RUN \
gobject-introspection \ gobject-introspection \
gst-plugins-good \ gst-plugins-good \
gstreamer \ gstreamer \
imagemagick \
jpeg \ jpeg \
lame \ lame \
libffi \ libffi \
@ -78,9 +79,9 @@ RUN \
tar xzf /tmp/mp3val-src/mp3val.tar.gz --strip 1 && \ tar xzf /tmp/mp3val-src/mp3val.tar.gz --strip 1 && \
make -f Makefile.linux && \ make -f Makefile.linux && \
cp -p mp3val /usr/bin && \ cp -p mp3val /usr/bin && \
echo "**** install pip ****" && \ echo "**** install pip packages ****" && \
python3 -m ensurepip && \ python3 -m venv /lsiopy && \
pip3 install -U --no-cache-dir \ pip install -U --no-cache-dir \
pip \ pip \
setuptools \ setuptools \
wheel && \ wheel && \
@ -89,14 +90,13 @@ RUN \
python3 setup.py build && \ python3 setup.py build && \
python3 setup.py install --prefix=/usr --root=/ && \ python3 setup.py install --prefix=/usr --root=/ && \
echo "**** install pip packages ****" && \ echo "**** install pip packages ****" && \
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.17/ \ pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.18/ \
beautifulsoup4 \ beautifulsoup4 \
beets-extrafiles \ beets-extrafiles \
beetcamp \ beetcamp \
discogs-client \ discogs-client \
flask \ flask \
PyGObject \ PyGObject \
pillow \
pyacoustid \ pyacoustid \
pylast \ pylast \
requests \ requests \

View file

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1 # syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17 FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18
# set version label # set version label
ARG BUILD_DATE ARG BUILD_DATE
@ -11,7 +11,7 @@ LABEL maintainer="aptalca"
RUN \ RUN \
echo "**** install build packages ****" && \ echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies --upgrade \ apk add --no-cache --virtual=build-dependencies \
build-base \ build-base \
cairo-dev \ cairo-dev \
cargo \ cargo \
@ -26,7 +26,7 @@ RUN \
openjpeg-dev \ openjpeg-dev \
python3-dev && \ python3-dev && \
echo "**** install runtime packages ****" && \ echo "**** install runtime packages ****" && \
apk add --no-cache --upgrade \ apk add --no-cache \
chromaprint \ chromaprint \
expat \ expat \
ffmpeg \ ffmpeg \
@ -36,6 +36,7 @@ RUN \
gobject-introspection \ gobject-introspection \
gst-plugins-good \ gst-plugins-good \
gstreamer \ gstreamer \
imagemagick \
jpeg \ jpeg \
lame \ lame \
libffi \ libffi \
@ -78,9 +79,9 @@ RUN \
tar xzf /tmp/mp3val-src/mp3val.tar.gz --strip 1 && \ tar xzf /tmp/mp3val-src/mp3val.tar.gz --strip 1 && \
make -f Makefile.linux && \ make -f Makefile.linux && \
cp -p mp3val /usr/bin && \ cp -p mp3val /usr/bin && \
echo "**** install pip ****" && \ echo "**** install pip packages ****" && \
python3 -m ensurepip && \ python3 -m venv /lsiopy && \
pip3 install -U --no-cache-dir \ pip install -U --no-cache-dir \
pip \ pip \
setuptools \ setuptools \
wheel && \ wheel && \
@ -89,14 +90,13 @@ RUN \
python3 setup.py build && \ python3 setup.py build && \
python3 setup.py install --prefix=/usr --root=/ && \ python3 setup.py install --prefix=/usr --root=/ && \
echo "**** install pip packages ****" && \ echo "**** install pip packages ****" && \
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.17/ \ pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.18/ \
beautifulsoup4 \ beautifulsoup4 \
beets-extrafiles \ beets-extrafiles \
beetcamp \ beetcamp \
discogs-client \ discogs-client \
flask \ flask \
PyGObject \ PyGObject \
pillow \
pyacoustid \ pyacoustid \
pylast \ pylast \
requests \ requests \

View file

@ -224,6 +224,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions ## Versions
* **25.08.23:** - Rebase to Alpine 3.18, switch from Pillow to Imagemagick.
* **03.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf) * **03.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
* **25.03.23:** - Add requests_oauthlib required for [beatport plugin](https://beets.readthedocs.io/en/stable/plugins/beatport.html). * **25.03.23:** - Add requests_oauthlib required for [beatport plugin](https://beets.readthedocs.io/en/stable/plugins/beatport.html).
* **24.12.22:** - Rebase to Alpine 3.17, migrate to s6v3, install chromaprint from Alpine repos, add beetcamp plugin. * **24.12.22:** - Rebase to Alpine 3.17, migrate to s6v3, install chromaprint from Alpine repos, add beetcamp plugin.

View file

@ -6,6 +6,7 @@ external_type: github_commit
release_type: prerelease release_type: prerelease
release_tag: nightly release_tag: nightly
ls_branch: nightly ls_branch: nightly
build_armhf: false
repo_vars: repo_vars:
- BUILD_VERSION_ARG = 'BEETS_VERSION' - BUILD_VERSION_ARG = 'BEETS_VERSION'
- EXT_GIT_BRANCH = 'master' - EXT_GIT_BRANCH = 'master'

View file

@ -28,6 +28,7 @@ param_ports:
- {external_port: "8337", internal_port: "8337", port_desc: "Application WebUI"} - {external_port: "8337", internal_port: "8337", port_desc: "Application WebUI"}
# changelog # changelog
changelogs: changelogs:
- {date: "25.08.23:", desc: "Rebase to Alpine 3.18, switch from Pillow to Imagemagick."}
- {date: "03.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"} - {date: "03.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
- {date: "25.03.23:", desc: "Add requests_oauthlib required for [beatport plugin](https://beets.readthedocs.io/en/stable/plugins/beatport.html)."} - {date: "25.03.23:", desc: "Add requests_oauthlib required for [beatport plugin](https://beets.readthedocs.io/en/stable/plugins/beatport.html)."}
- {date: "24.12.22:", desc: "Rebase to Alpine 3.17, migrate to s6v3, install chromaprint from Alpine repos, add beetcamp plugin."} - {date: "24.12.22:", desc: "Rebase to Alpine 3.17, migrate to s6v3, install chromaprint from Alpine repos, add beetcamp plugin."}