From 203c7585113f1f439d9876e5d0ee81cc1c064b69 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Wed, 4 Jun 2025 13:32:11 +0200 Subject: [PATCH] push to 2.504.2 --- Containerfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Containerfile b/Containerfile index 7cf0903..b597f3a 100644 --- a/Containerfile +++ b/Containerfile @@ -1,18 +1,19 @@ -FROM docker.io/alpine:3.21 AS builder +FROM docker.io/alpine:3.22 AS builder -ENV VERSION=2.504.1 -ENV SHA256_SUM=81026db18b0c4aad6b62cf408e4c42e5797661b41c517b37df606238e89b9df1 +ENV VERSION=2.504.2 +ENV SHA256_SUM=e52347c01dd39116c364fb7ebab78d156bce8f6add28484ff571fe0d0faeabf6 RUN wget -O jenkins.war https://get.jenkins.io/war-stable/$VERSION/jenkins.war RUN echo "$SHA256_SUM jenkins.war" | sha256sum -c - || exit 1 -FROM docker.io/alpine:3.21 +FROM docker.io/alpine:3.22 RUN adduser -h /app -D -u 2222 jenkins RUN apk --no-cache add \ openjdk21 \ fontconfig \ - font-dejavu + font-dejavu \ + git COPY --from=builder /jenkins.war /app/jenkins.war