From ebe7bf99983367d50645ad466c81cc28f1433219 Mon Sep 17 00:00:00 2001 From: Pikachu920 <28607612+Pikachu920@users.noreply.github.com> Date: Mon, 13 May 2024 20:50:19 -0500 Subject: [PATCH] Back to Java 21, but from the community packages --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b8200b0..1f8b7c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL authors="SkriptLang" ENV PYTHONUNBUFFERED=1 RUN apk add --no-cache git -RUN apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community openjdk22 +RUN apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community openjdk21 COPY run-tests.py /run-tests.py ENTRYPOINT ["python3", "/run-tests.py"]