Skip to content

Commit

Permalink
Merge pull request #79 from JulienBacquart/master
Browse files Browse the repository at this point in the history
Update to 5.0.0 + Java LTS 21
  • Loading branch information
stain authored Jul 31, 2024
2 parents 4b8fbae + 83fa7a6 commit 3917ff4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ docker build -t jena-fuseki jena-fuseki

## Dockerfile overview

The `Dockerfile`s for both images use the official [eclipse-temurin:17-jre-alpine](https://hub.docker.com/r/_/eclipse-temurin/) base image, which is based on the [`Apline`](https://hub.docker.com/_/alpine/):3.18.0 image; this clocks in at about 55 MB.
The `Dockerfile`s for both images use the official [eclipse-temurin:21-jre-alpine](https://hub.docker.com/r/_/eclipse-temurin/) base image, which is based on the [`Alpine`](https://hub.docker.com/_/alpine/):3.19.1 image; this clocks in at about 62 MB.

The `ENV` variables like `JENA_VERSION` and `FUSEKI_VERSION` determines which version of Jena and Fuseki are downloaded. Updating the version also requires updating the `JENA_SHA512` and `FUSEKI_SHA512` variables, which values should match the official Jena download `.tar.gz.sha512` hashes, as approved in their release `[VOTE]` emails.

Expand Down
6 changes: 3 additions & 3 deletions jena-fuseki/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.


FROM eclipse-temurin:17-jre-alpine
FROM eclipse-temurin:21-jre-alpine
MAINTAINER Stian Soiland-Reyes <stain@apache.org>

ENV LANG C.UTF-8
Expand All @@ -26,8 +26,8 @@ RUN set -eux; \

# Update below according to https://jena.apache.org/download/
# and checksum for apache-jena-fuseki-4.x.x.tar.gz.sha512
ENV FUSEKI_SHA512 78074d87d4c022ef7e89b8394d2b14ead447a9201d52795d8c9adab0e03341cffc883abb849dab340bbecfc18654e1d126a47d8936241e8e2f036b0d66294c7d
ENV FUSEKI_VERSION 4.8.0
ENV FUSEKI_SHA512 c7b9fa452cdec19c50ee08ee191012b26c7b51f1ee5c5143db3047e0545c007599fbc08481fa61df5aef766a796e43262c209fc42578f2e532c0ab0c19dcbc51
ENV FUSEKI_VERSION 5.0.0
ENV ASF_MIRROR https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename=
ENV ASF_ARCHIVE https://archive.apache.org/dist/

Expand Down
2 changes: 1 addition & 1 deletion jena-fuseki/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Jena Fuseki docker image

* Docker image: [stain/jena-fuseki](https://hub.docker.com/r/stain/jena-fuseki/)
* Base images: [eclipse-temurin](https://hub.docker.com/r/_/eclipse-temurin/):17-jre-alpine
* Base images: [eclipse-temurin](https://hub.docker.com/r/_/eclipse-temurin/):21-jre-alpine
* Source: [Dockerfile](https://github.com/stain/jena-docker/blob/master/jena-fuseki/Dockerfile), [Apache Jena Fuseki](https://jena.apache.org/download/)

[![Build](https://github.com/stain/jena-docker/actions/workflows/main.yml/badge.svg)](https://github.com/stain/jena-docker/actions/workflows/main.yml)
Expand Down
6 changes: 3 additions & 3 deletions jena/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM eclipse-temurin:17-jre-alpine
FROM eclipse-temurin:21-jre-alpine

MAINTAINER Stian Soiland-Reyes <stain@apache.org>

Expand All @@ -28,8 +28,8 @@ RUN set -eux; \

# Update below according to https://jena.apache.org/download/
# and checksum for apache-jena-4.x.x.tar.gz.sha512
ENV JENA_SHA512 d6b8d271c612a53f4683eb9b2f76c213452fdc38eef7b5d56100cd2c0f4c3153d07757120b08a27dd5a8fd27b51bd573273be713befaa205edfa2957ec82b5e5
ENV JENA_VERSION 4.8.0
ENV JENA_SHA512 5bbb9a3b613eadcd75beb11671b2d797794b578eea2f0e68b57ba7fd402ca789c7ea3c71206baace8c662581e8e615a22d40d3b5f9461823a8603dd6ee40d912
ENV JENA_VERSION 5.0.0
ENV ASF_MIRROR https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename=
ENV ASF_ARCHIVE https://archive.apache.org/dist/

Expand Down
2 changes: 1 addition & 1 deletion jena/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Jena command line tools

* Docker image: [stain/jena](https://hub.docker.com/r/stain/jena/)
* Base images: [eclipse-temurin](https://hub.docker.com/r/_/eclipse-temurin/):17-jre-alpine
* Base images: [eclipse-temurin](https://hub.docker.com/r/_/eclipse-temurin/):21-jre-alpine
* Source: [Dockerfile](https://github.com/stain/jena-docker/blob/master/jena/Dockerfile), [Apache Jena](http://jena.apache.org/download/)


Expand Down

0 comments on commit 3917ff4

Please sign in to comment.