##// 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 203 packaging_targets := \
204 204 rhel7 \
205 205 rhel8 \
206 rhel9 \
206 207 deb \
207 208 docker-rhel7 \
208 209 docker-rhel8 \
210 docker-rhel9 \
209 211 docker-debian-bullseye \
210 212 docker-debian-buster \
211 213 docker-debian-stretch \
@@ -15,7 +15,8 b' FEDORA_RELEASE := 31'
15 15
16 16 RHEL_RELEASES := \
17 17 7 \
18 8
18 8 \
19 9
19 20
20 21 # Build a Python for these RHEL (and derivatives) releases.
21 22 RHEL_WITH_PYTHON_RELEASES :=
@@ -1,8 +1,12 b''
1 FROM rockylinux/rockylinux:8
1 FROM rockylinux/rockylinux:9
2 2
3 3 RUN groupadd -g %GID% build && \
4 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 10 RUN yum install -y \
7 11 gcc \
8 12 gettext \
General Comments 0
You need to be logged in to leave comments. Login now