From 0ae36950f0a686626e04b436d98868b74c0502c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 07:53:09 -0500 Subject: [PATCH] Bump fedora from 40 to 41 in /containers/release-candidate Bumps fedora from 40 to 41. --- updated-dependencies: - dependency-name: fedora dependency-type: direct:production update-type: version-update:semver-major ... Also removes the "dnf update nodejs". That was needed because the pinned version of nodejs in Fedora 40 was broken. Fedora 41 ships with a newer version of nodejs that includes a fix so this update is no longer needed. Signed-off-by: dependabot[bot] --- containers/release-candidate/Dockerfile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/containers/release-candidate/Dockerfile b/containers/release-candidate/Dockerfile index fa218bfffc..3a0eead744 100644 --- a/containers/release-candidate/Dockerfile +++ b/containers/release-candidate/Dockerfile @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM registry.fedoraproject.org/fedora:40 +FROM registry.fedoraproject.org/fedora:41 WORKDIR /root @@ -24,11 +24,6 @@ RUN rm -rf /root/* # Install dependencies, explicitly not enabling the updates repo so we are # pinned at a particular fedora release. -# -# Note that the default nodejs package shipped with fedora 40 has a bug that -# can sometimes lead to SIGILL errors on some architectures. So we also upgrade -# to the latest nodejs version to fix this. However we only upgrade the one -# package so we are still mostly pinned to the Fedora 40 release. RUN \ dnf -y --quiet --repo=fedora install \ clang \ @@ -46,8 +41,6 @@ RUN \ vim-minimal \ wine \ winetricks && \ - dnf -y --quiet --repo=updates upgrade-minimal \ - nodejs && \ dnf clean all # Enable sbt-pgp plugin