##// END OF EJS Templates
contrib: add support for rhel9
Mathias De Mare -
r50314:2edb41ed default
parent child Browse files
Show More
@@ -203,9 +203,11 b' i18n/hg.pot: $(PYFILES) $(DOCFILES) i18n'
203 packaging_targets := \
203 packaging_targets := \
204 rhel7 \
204 rhel7 \
205 rhel8 \
205 rhel8 \
206 rhel9 \
206 deb \
207 deb \
207 docker-rhel7 \
208 docker-rhel7 \
208 docker-rhel8 \
209 docker-rhel8 \
210 docker-rhel9 \
209 docker-debian-bullseye \
211 docker-debian-bullseye \
210 docker-debian-buster \
212 docker-debian-buster \
211 docker-debian-stretch \
213 docker-debian-stretch \
@@ -15,7 +15,8 b' FEDORA_RELEASE := 31'
15
15
16 RHEL_RELEASES := \
16 RHEL_RELEASES := \
17 7 \
17 7 \
18 8
18 8 \
19 9
19
20
20 # Build a Python for these RHEL (and derivatives) releases.
21 # Build a Python for these RHEL (and derivatives) releases.
21 RHEL_WITH_PYTHON_RELEASES :=
22 RHEL_WITH_PYTHON_RELEASES :=
@@ -1,8 +1,12 b''
1 FROM rockylinux/rockylinux:8
1 FROM rockylinux/rockylinux:9
2
2
3 RUN groupadd -g %GID% build && \
3 RUN groupadd -g %GID% build && \
4 useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build
4 useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build
5
5
6 RUN dnf install 'dnf-command(config-manager)' -y
7 # crb repository is necessary for docutils
8 RUN dnf config-manager --set-enabled crb
9
6 RUN yum install -y \
10 RUN yum install -y \
7 gcc \
11 gcc \
8 gettext \
12 gettext \
General Comments 0
You need to be logged in to leave comments. Login now