Merge pull request #48 from linuxserver/java17

Bump JRE to 17 for v3
pull/49/head
Adam 6 months ago committed by GitHub
commit aded675776
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,17 +15,17 @@ RUN \
unzip && \
echo "**** install runtime packages ****" && \
apk add --no-cache \
openjdk8-jre-base && \
openjdk17-jre-headless && \
echo "**** install ubooquity ****" && \
if [ -z ${UBOOQUITY_VERSION+x} ]; then \
UBOOQUITY_VERSION=$(curl -IsL -w %{url_effective} -o /dev/null http://vaemendis.net/ubooquity/service/download.php \
UBOOQUITY_VERSION=$(curl -IsL -w %{url_effective} -o /dev/null https://vaemendis.net/ubooquity/service/download.php \
| sed 's|.*Ubooquity-\([0-9\.]*\).zip|\1|'); \
fi && \
mkdir -p \
/app/ubooquity && \
curl -o \
/tmp/ubooquity.zip -L \
"http://vaemendis.net/ubooquity/downloads/Ubooquity-${UBOOQUITY_VERSION}.zip" && \
"https://vaemendis.net/ubooquity/downloads/Ubooquity-${UBOOQUITY_VERSION}.zip" && \
unzip /tmp/ubooquity.zip -d /app/ubooquity && \
echo "**** cleanup ****" && \
apk del --purge \

@ -15,17 +15,17 @@ RUN \
unzip && \
echo "**** install runtime packages ****" && \
apk add --no-cache \
openjdk8-jre-base && \
openjdk17-jre-headless && \
echo "**** install ubooquity ****" && \
if [ -z ${UBOOQUITY_VERSION+x} ]; then \
UBOOQUITY_VERSION=$(curl -IsL -w %{url_effective} -o /dev/null http://vaemendis.net/ubooquity/service/download.php \
UBOOQUITY_VERSION=$(curl -IsL -w %{url_effective} -o /dev/null https://vaemendis.net/ubooquity/service/download.php \
| sed 's|.*Ubooquity-\([0-9\.]*\).zip|\1|'); \
fi && \
mkdir -p \
/app/ubooquity && \
curl -o \
/tmp/ubooquity.zip -L \
"http://vaemendis.net/ubooquity/downloads/Ubooquity-${UBOOQUITY_VERSION}.zip" && \
"https://vaemendis.net/ubooquity/downloads/Ubooquity-${UBOOQUITY_VERSION}.zip" && \
unzip /tmp/ubooquity.zip -d /app/ubooquity && \
echo "**** cleanup ****" && \
apk del --purge \

@ -317,6 +317,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **29.10.23:** - Bump JRE to 17 to support v3.
* **12.07.23:** - Rebase to Alpine 3.18.
* **04.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
* **05.03.23:** - Rebase to Alpine 3.17.

@ -61,6 +61,7 @@ app_setup_block: |
If no value is set it will default to 512MB.
# changelog
changelogs:
- {date: "29.10.23:", desc: "Bump JRE to 17 to support v3."}
- {date: "12.07.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: "05.03.23:", desc: "Rebase to Alpine 3.17."}

Loading…
Cancel
Save