Comments
Patch
new file mode 100644
@@ -0,0 +1,15 @@
+FROM centos:centos8
+
+RUN groupadd -g %GID% build && \
+ useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build
+
+RUN yum install -y \
+ gcc \
+ gettext \
+ make \
+ python3-devel \
+ python3-docutils \
+ rpm-build
+
+# For creating repo meta data
+RUN yum install -y createrepo
@@ -16,7 +16,8 @@
CENTOS_RELEASES := \
5 \
6 \
- 7
+ 7 \
+ 8
# Build a Python for these CentOS releases.
CENTOS_WITH_PYTHON_RELEASES := 5 6
@@ -183,10 +183,12 @@
centos5 \
centos6 \
centos7 \
+ centos8 \
deb \
docker-centos5 \
docker-centos6 \
docker-centos7 \
+ docker-centos8 \
docker-debian-jessie \
docker-debian-stretch \
docker-fedora \