##// END OF EJS Templates
packaging: add support for CentOS 8...
Mathias De Mare -
r43723:7c9d42c1 stable
parent child Browse files
Show More
@@ -0,0 +1,15 b''
1 FROM centos:centos8
2
3 RUN groupadd -g %GID% build && \
4 useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build
5
6 RUN yum install -y \
7 gcc \
8 gettext \
9 make \
10 python3-devel \
11 python3-docutils \
12 rpm-build
13
14 # For creating repo meta data
15 RUN yum install -y createrepo
@@ -183,10 +183,12 b' packaging_targets := \\'
183 centos5 \
183 centos5 \
184 centos6 \
184 centos6 \
185 centos7 \
185 centos7 \
186 centos8 \
186 deb \
187 deb \
187 docker-centos5 \
188 docker-centos5 \
188 docker-centos6 \
189 docker-centos6 \
189 docker-centos7 \
190 docker-centos7 \
191 docker-centos8 \
190 docker-debian-jessie \
192 docker-debian-jessie \
191 docker-debian-stretch \
193 docker-debian-stretch \
192 docker-fedora \
194 docker-fedora \
@@ -16,7 +16,8 b' FEDORA_RELEASE := 31'
16 CENTOS_RELEASES := \
16 CENTOS_RELEASES := \
17 5 \
17 5 \
18 6 \
18 6 \
19 7
19 7 \
20 8
20
21
21 # Build a Python for these CentOS releases.
22 # Build a Python for these CentOS releases.
22 CENTOS_WITH_PYTHON_RELEASES := 5 6
23 CENTOS_WITH_PYTHON_RELEASES := 5 6
General Comments 0
You need to be logged in to leave comments. Login now