Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:

jobs:
build-and-push-image:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: ${{ github.repository_owner == 'music-encoding' }}

permissions:
Expand Down
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

LABEL org.opencontainers.image.authors="https://github.com/riedde"
LABEL org.opencontainers.image.authors="https://github.com/bwbohl"
Expand All @@ -7,10 +7,10 @@ LABEL org.opencontainers.image.source="https://github.com/music-encoding/docker-
LABEL org.opencontainers.image.revision="v0.0.1"

ARG JAVA_VERSION=17
ARG PRINCE_VERSION=15.3
ARG SAXON_VERSION=SaxonHE12-5
ARG PRINCE_VERSION=15.4.1
ARG SAXON_EDITION_VERSION=SaxonHE12-5
ARG SCHEMATRON_VERSION=8.0.0
ARG UBUNTU_VERSION=22.04
ARG UBUNTU_VERSION=24.04
ARG XERCES_VERSION=26.1.0.1

ARG TARGETARCH
Expand All @@ -27,7 +27,7 @@ ENV NODE_ENV=production
USER root

ADD https://downloads.apache.org/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz \
https://github.com/Saxonica/Saxon-HE/releases/download/${SAXON_VERSION}/${SAXON_VERSION}J.zip \
https://github.com/Saxonica/Saxon-HE/releases/download/${SAXON_EDITION_VERSION}/${SAXON_EDITION_VERSION}J.zip \
https://www.oxygenxml.com/maven/com/oxygenxml/oxygen-patched-xerces/${XERCES_VERSION}/oxygen-patched-xerces-${XERCES_VERSION}.jar \
https://repo1.maven.org/maven2/com/helger/schematron/ph-schematron-ant-task/${SCHEMATRON_VERSION}/ph-schematron-ant-task-${SCHEMATRON_VERSION}-jar-with-dependencies.jar \
/tmp/
Expand All @@ -51,7 +51,7 @@ RUN apt-get update && apt-get full-upgrade -y && \
# setup ant
tar -xvf /tmp/apache-ant-${ANT_VERSION}-bin.tar.gz -C /opt && \
# setup saxon
unzip /tmp/${SAXON_VERSION}J.zip -d ${ANT_HOME}/lib && \
unzip /tmp/${SAXON_EDITION_VERSION}J.zip -d ${ANT_HOME}/lib && \
# setup xerces
cp /tmp/oxygen-patched-xerces-${XERCES_VERSION}.jar ${ANT_HOME}/lib && \
# setup schematron
Expand Down
Loading