From 8c9175312ede1f3463f595dc14bc6746891a6528 Mon Sep 17 00:00:00 2001 From: mr-boneman Date: Thu, 5 Dec 2024 20:15:02 +0100 Subject: [PATCH] fedora 41 and nim 2.2.0 --- Containerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Containerfile b/Containerfile index c579e0e..75bdc5c 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -FROM quay.io/fedora/fedora-minimal:40 AS builder +FROM quay.io/fedora/fedora-minimal:41 AS builder RUN dnf5 install -y wget \ gcc glibc-devel just \ @@ -6,7 +6,7 @@ RUN dnf5 install -y wget \ RUN printf ". /etc/bashrc\n" > $HOME/.bashrc -ARG nimVersion=2.0.8 +ARG nimVersion=2.2.0 RUN set -euxo pipefail && \ tempdir=$(mktemp -d) && \ pushd $tempdir && \ @@ -28,7 +28,7 @@ ARG NIMBLESETTINGS="-d:release --opt:speed -d:strip" RUN just build-binary '${NIMBLESETTINGS}' -FROM quay.io/fedora/fedora-minimal:40 +FROM quay.io/fedora/fedora-minimal:41 # Add Tini ENV TINI_VERSION v0.19.0 @@ -41,4 +41,4 @@ RUN dnf5 -y install libcurl && dnf5 clean all COPY --from=builder /workdir/rssmix /bin/rssmix STOPSIGNAL SIGINT -CMD [ "/bin/rssmix" ] \ No newline at end of file +CMD [ "/bin/rssmix" ]