contrib/packaging/docker/centos8
author Mathias De Mare <mathias.de_mare@nokia.com>
Mon, 14 Feb 2022 11:32:03 +0100
branchstable
changeset 48739 aeeb54261099
parent 47464 25d36300ba8e
permissions -rw-r--r--
packaging: replace centos8 by rockylinux 8 Differential Revision: https://phab.mercurial-scm.org/D12172

FROM rockylinux/rockylinux:8

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

# For rust extensions
RUN yum install -y cargo