Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade to Fedora 41 #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions buildbot/pip/Containerfile.fedora39
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM fedora:39
RUN dnf update -y && dnf install -y \
python3-pip \
&& dnf clean all

ADD pip_download /usr/local/bin/pip_download
3 changes: 3 additions & 0 deletions buildbot/pip/Containerfile.fedora40
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM fedora:40

ADD pip_download /usr/local/bin/pip_download
6 changes: 6 additions & 0 deletions buildbot/pip/Containerfile.fedora41
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM fedora:41
RUN dnf update -y && dnf install -y \
python3-pip \
&& dnf clean all

ADD pip_download /usr/local/bin/pip_download
8 changes: 8 additions & 0 deletions buildbot/pip/Containerfile.ubuntu2404
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
python3-pip \
python3-venv \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

ADD pip_download /usr/local/bin/pip_download
4 changes: 4 additions & 0 deletions buildbot/pip/run
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ run() {
distro fedora36
distro fedora37
distro fedora38
distro fedora39
distro fedora40
distro fedora41
distro ubuntu2004
distro ubuntu2204
distro ubuntu2404
wget -P output https://github.com/naivesystems/buildbot/releases/download/3.11.3%2Bnsbox.2024052201/buildbot_www_react-3.9.2-py3-none-any.whl
}

Expand Down
2 changes: 1 addition & 1 deletion gerrit/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:38
FROM fedora:41

RUN dnf update -y && dnf install -y \
git \
Expand Down
2 changes: 1 addition & 1 deletion httpd/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:38
FROM fedora:41

RUN dnf update -y && dnf install -y \
httpd \
Expand Down
2 changes: 1 addition & 1 deletion keycloak/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:38
FROM fedora:41

RUN dnf update -y && dnf install -y \
java-17-openjdk-headless \
Expand Down