contrib/packaging/docker/centos8
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 03 May 2021 23:59:15 +0200
changeset 47254 3b04cf976c67
parent 45950 eccbfa7e19c0
child 47048 9b8f326731ac
permissions -rw-r--r--
revlog: use `rev` instead of `i` in replace_sidedata_info This is clearer. Differential Revision: https://phab.mercurial-scm.org/D10640

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

# For rust extensions
RUN yum install -y cargo