xmpp-compliance-tester

XMPP Compliance Tester, forked from github.com/iNPUTmice/ComplianceTester
git clone https://git.in0rdr.ch/xmpp-compliance-tester.git
Log | Files | Refs | Pull requests |Archive | README | LICENSE

commit ea3b1d4e47d8d5e5012e15e6af84cc33f7decf6a
parent ea3e65f953db8bd1c5581f30b3801c2f397f34d3
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sat, 22 Nov 2025 09:29:07 +0100

fix: deprecated openjdk img

Diffstat:
MDockerfile | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile @@ -5,11 +5,11 @@ RUN git clone https://git.in0rdr.ch/xmpp-compliance-tester.git /build WORKDIR /build RUN mvn package -FROM openjdk:jre-alpine +FROM docker.io/eclipse-temurin:25-jre-alpine COPY --from=builder /build/target/ComplianceTester-0.2.3.jar ComplianceTester-0.2.3.jar # XMPP username and password from env ENV XMPP_USER=username@domain.tld ENV XMPP_PASSWORD=password -CMD ["sh", "-c", "java -jar ComplianceTester-0.2.3.jar $XMPP_USER $XMPP_PASSWORD"] -\ No newline at end of file +CMD ["sh", "-c", "java -jar ComplianceTester-0.2.3.jar $XMPP_USER $XMPP_PASSWORD"]