diff --git a/Dockerfile b/Dockerfile index 47c8f5b..30fb300 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG ALPINE_VER="3.9" +ARG ALPINE_VER="3.10" FROM lsiobase/alpine:${ALPINE_VER} as fetch-stage ############## fetch stage ############## @@ -160,7 +160,7 @@ FROM lsiobase/alpine:${ALPINE_VER} as strip-stage COPY --from=beets_build-stage /build/beets/usr/ /build/all//usr/ COPY --from=chromaprint_build-stage /build/chromaprint/usr/ /build/all//usr/ COPY --from=mp3gain_build-stage /build/mp3gain/usr/ /build/all//usr/ -COPY --from=pip-stage /usr/lib/python3.6/site-packages /build/all/usr/lib/python3.6/site-packages +COPY --from=pip-stage /usr/lib/python3.7/site-packages /build/all/usr/lib/python3.7/site-packages # install strip packages RUN \ @@ -174,7 +174,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] # strip packages RUN \ set -ex && \ - for dirs in usr/bin usr/lib usr/lib/python3.6/site-packages; \ + for dirs in usr/bin usr/lib usr/lib/python3.7/site-packages; \ do \ find /build/all/"${dirs}" -type f | \ while read -r files ; do strip "${files}" || true \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 6335016..d7c44f7 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -ARG ALPINE_VER="3.9" +ARG ALPINE_VER="3.10" FROM lsiobase/alpine:arm64v8-${ALPINE_VER} as fetch-stage ############## fetch stage ############## @@ -164,7 +164,7 @@ FROM lsiobase/alpine:arm64v8-${ALPINE_VER} as strip-stage COPY --from=beets_build-stage /build/beets/usr/ /build/all//usr/ COPY --from=chromaprint_build-stage /build/chromaprint/usr/ /build/all//usr/ COPY --from=mp3gain_build-stage /build/mp3gain/usr/ /build/all//usr/ -COPY --from=pip-stage /usr/lib/python3.6/site-packages /build/all/usr/lib/python3.6/site-packages +COPY --from=pip-stage /usr/lib/python3.7/site-packages /build/all/usr/lib/python3.7/site-packages # install strip packages RUN \ @@ -178,7 +178,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] # strip packages RUN \ set -ex && \ - for dirs in usr/bin usr/lib usr/lib/python3.6/site-packages; \ + for dirs in usr/bin usr/lib usr/lib/python3.7/site-packages; \ do \ find /build/all/"${dirs}" -type f | \ while read -r files ; do strip "${files}" || true \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index fe6ed2d..201fc53 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -ARG ALPINE_VER="3.9" +ARG ALPINE_VER="3.10" FROM lsiobase/alpine:arm32v7-${ALPINE_VER} as fetch-stage ############## fetch stage ############## @@ -160,7 +160,7 @@ FROM lsiobase/alpine:arm32v7-${ALPINE_VER} as strip-stage COPY --from=beets_build-stage /build/beets/usr/ /build/all//usr/ COPY --from=chromaprint_build-stage /build/chromaprint/usr/ /build/all//usr/ COPY --from=mp3gain_build-stage /build/mp3gain/usr/ /build/all//usr/ -COPY --from=pip-stage /usr/lib/python3.6/site-packages /build/all/usr/lib/python3.6/site-packages +COPY --from=pip-stage /usr/lib/python3.7/site-packages /build/all/usr/lib/python3.7/site-packages # install strip packages RUN \ @@ -174,7 +174,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] # strip packages RUN \ set -ex && \ - for dirs in usr/bin usr/lib usr/lib/python3.6/site-packages; \ + for dirs in usr/bin usr/lib usr/lib/python3.7/site-packages; \ do \ find /build/all/"${dirs}" -type f | \ while read -r files ; do strip "${files}" || true \ diff --git a/readme-vars.yml b/readme-vars.yml index e1c0c18..7545b86 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -33,6 +33,7 @@ param_ports: # changelog changelogs: + - { date: "28.06.19:", desc: "Rebasing to alpine 3.10." } - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } - { date: "01.03.19:", desc: "Switch to python3." } - { date: "07.02.19:", desc: "Add fftw-dev build dependency for chromaprint." }