From 8b3725f8dc186137eee2313aeedbd5554b0dc6d6 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 1 Feb 2025 17:33:04 -0600 Subject: [PATCH] Update to latest Fedora There's really no reason to pin to a specific version of Fedora. Doing so just means we're going to be perpetually behind, since I'm never going to remember to update it manually. --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 7538840..3bb9454 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -FROM registry.fedoraproject.org/fedora:36 +FROM registry.fedoraproject.org/fedora:latest RUN groupadd -g 1000 jenkins \ && useradd -c 'Jenkins user' -g 1000 -l -M -s /bin/sh -u 1000 jenkins