Skip to content

Commit

Permalink
Bump fedora from 40 to 41 in /containers/release-candidate
Browse files Browse the repository at this point in the history
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] <[email protected]>
  • Loading branch information
dependabot[bot] authored and stevedlawrence committed Nov 14, 2024
1 parent ef1c788 commit 0ae3695
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions containers/release-candidate/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 \
Expand All @@ -46,8 +41,6 @@ RUN \
vim-minimal \
wine \
winetricks && \
dnf -y --quiet --repo=updates upgrade-minimal \
nodejs && \
dnf clean all

# Enable sbt-pgp plugin
Expand Down

0 comments on commit 0ae3695

Please sign in to comment.