contrib/packaging/docker/centos6
author Taapas Agrawal <taapas2897@gmail.com>
Fri, 21 Jun 2019 00:26:07 +0530
changeset 42535 df5f674050b7
parent 41234 4c0d4bbdc395
permissions -rw-r--r--
relnotes: added description about statemod._statecheck Differential Revision: https://phab.mercurial-scm.org/D6557

FROM centos:centos6

RUN groupadd -g %GID% build && \
    useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build

RUN yum install -y \
	gcc \
	gettext \
	make \
	python-devel \
	python-docutils \
	rpm-build \
	tar

# For creating repo meta data
RUN yum install -y createrepo

# For python
RUN yum install -y \
	bzip2-devel \
	ncurses-devel \
	openssl-devel \
	readline-devel \
	zlib-devel