Skip to content

Update versions of OS, Saxon and FOP #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions docbuilder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
ARG FOP_VERSION=2.7
ARG SAXON_VERSION=10.5
ARG FOP_VERSION=2.11
# there are newer 11.x and 12.x Saxon versions available
ARG SAXON_VERSION=10.9

FROM eclipse-temurin:20 AS download-and-extract-tools
# eclipse-temurin:21 tracks JDK 21, which is LTS
FROM eclipse-temurin:21 AS download-and-extract-tools
ARG FOP_VERSION
ARG SAXON_VERSION

Expand Down
8 changes: 5 additions & 3 deletions off2rep/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
ARG SAXON_VERSION=10.3
# there are newer 11.x and 12.x Saxon versions available
ARG SAXON_VERSION=10.9

FROM eclipse-temurin:20-alpine as download-and-extract-tools
# eclipse-temurin:21 tracks JDK 21, which is LTS
FROM eclipse-temurin:21-alpine as download-and-extract-tools
ARG SAXON_VERSION

RUN wget https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/${SAXON_VERSION}/Saxon-HE-${SAXON_VERSION}.jar
# use strict to force error exit code when jar is unsigned
RUN jarsigner -verify -strict Saxon-HE-${SAXON_VERSION}.jar

FROM eclipse-temurin:20-alpine
FROM eclipse-temurin:21-alpine
ARG SAXON_VERSION

COPY --from=download-and-extract-tools /Saxon-HE-${SAXON_VERSION}.jar /saxon.jar
Expand Down
8 changes: 5 additions & 3 deletions quickscope/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
ARG SAXON_VERSION=10.3
# there are newer 11.x and 12.x Saxon versions available
ARG SAXON_VERSION=10.9

FROM eclipse-temurin:20-alpine as download-and-extract-tools
# eclipse-temurin:21 tracks JDK 21, which is LTS
FROM eclipse-temurin:21-alpine as download-and-extract-tools
ARG SAXON_VERSION

RUN wget https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/${SAXON_VERSION}/Saxon-HE-${SAXON_VERSION}.jar
# use strict to force error exit code when jar is unsigned
RUN jarsigner -verify -strict Saxon-HE-${SAXON_VERSION}.jar

FROM eclipse-temurin:20-alpine
FROM eclipse-temurin:21-alpine
ARG SAXON_VERSION

COPY --from=download-and-extract-tools /Saxon-HE-${SAXON_VERSION}.jar /saxon.jar
Expand Down