Merge pull request #71 from linuxserver/3.18

This commit is contained in:
Roxedus 2023-08-28 08:54:46 +02:00 committed by GitHub
commit 1b96f4d596
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 8 deletions

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-alpine:3.17
FROM ghcr.io/linuxserver/baseimage-alpine:3.18
# set version label
ARG BUILD_DATE
@ -12,8 +12,7 @@ LABEL maintainer="saarg"
RUN \
echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \
gcc \
make \
build-base \
wget && \
echo "**** install runtime packages ****" && \
apk add --no-cache \
@ -23,7 +22,8 @@ RUN \
perl-digest-sha1 \
perl-io-socket-inet6 \
perl-io-socket-ssl \
perl-json && \
perl-json \
perl-netaddr-ip && \
echo "***** install perl modules ****" && \
curl -L http://cpanmin.us | perl - App::cpanminus && \
cpanm \

View File

@ -1,6 +1,6 @@
# 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
ARG BUILD_DATE
@ -12,8 +12,7 @@ LABEL maintainer="saarg"
RUN \
echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \
gcc \
make \
build-base \
wget && \
echo "**** install runtime packages ****" && \
apk add --no-cache \
@ -23,7 +22,8 @@ RUN \
perl-digest-sha1 \
perl-io-socket-inet6 \
perl-io-socket-ssl \
perl-json && \
perl-json \
perl-netaddr-ip && \
echo "***** install perl modules ****" && \
curl -L http://cpanmin.us | perl - App::cpanminus && \
cpanm \

View File

@ -224,6 +224,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **25.08.23:** - Rebase to Alpine 3.18.
* **04.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
* **13.02.23:** - Rebase to Alpine 3.17, migrate to s6v3.
* **20.10.22:** - Update build instructions for 3.10.0. Update default `ddclient.conf`.

View File

@ -45,6 +45,7 @@ app_setup_block: |
````
# changelog
changelogs:
- {date: "25.08.23:", desc: "Rebase to Alpine 3.18."}
- {date: "04.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
- {date: "13.02.23:", desc: "Rebase to Alpine 3.17, migrate to s6v3."}
- {date: "20.10.22:", desc: "Update build instructions for 3.10.0. Update default `ddclient.conf`."}