rebase to 3.15, add wheel module

This commit is contained in:
aptalca 2022-02-28 12:24:03 -05:00
parent f979da5111
commit 53b4477ffd
5 changed files with 11 additions and 9 deletions

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine:3.13
FROM ghcr.io/linuxserver/baseimage-alpine:3.15
# set version label
ARG BUILD_DATE
@ -39,8 +39,8 @@ RUN \
/app/apprise-api/ --strip-components=1 && \
echo "**** install pip packages ****" && \
cd /app/apprise-api && \
pip3 install -U --no-cache-dir pip && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
pip3 install -U --no-cache-dir pip wheel && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.15/ -r requirements.txt && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.12
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.15
# set version label
ARG BUILD_DATE
@ -39,8 +39,8 @@ RUN \
/app/apprise-api/ --strip-components=1 && \
echo "**** install pip packages ****" && \
cd /app/apprise-api && \
pip3 install -U --no-cache-dir pip && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
pip3 install -U --no-cache-dir pip wheel && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.15/ -r requirements.txt && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.12
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.15
# set version label
ARG BUILD_DATE
@ -39,8 +39,8 @@ RUN \
/app/apprise-api/ --strip-components=1 && \
echo "**** install pip packages ****" && \
cd /app/apprise-api && \
pip3 install -U --no-cache-dir pip && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
pip3 install -U --no-cache-dir pip wheel && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.15/ -r requirements.txt && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \

View File

@ -223,6 +223,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **28.02.21:** - Rebase to alpine 3.15.
* **03.11.21:** - Increase uWSGI buffer size to 32kb.
* **16.05.21:** - Add linuxserver wheel index.
* **26.02.21:** - Initial Release.

View File

@ -79,6 +79,7 @@ app_setup_block: []
# changelog
changelogs:
- { date: "28.02.21:", desc: "Rebase to alpine 3.15." }
- { date: "03.11.21:", desc: "Increase uWSGI buffer size to 32kb." }
- { date: "16.05.21:", desc: "Add linuxserver wheel index." }
- { date: "26.02.21:", desc: "Initial Release." }