view contrib/packaging/docker/centos8 @ 48371:aeeb54261099 stable

packaging: replace centos8 by rockylinux 8 Differential Revision: https://phab.mercurial-scm.org/D12172
author Mathias De Mare <mathias.de_mare@nokia.com>
date Mon, 14 Feb 2022 11:32:03 +0100
parents 25d36300ba8e
children
line wrap: on
line source

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