contrib/docker/centos6
author Pulkit Goyal <7895pulkit@gmail.com>
Wed, 14 Feb 2018 17:44:54 +0530
changeset 36192 eb91ffdaaece
parent 34423 1baa077214ae
permissions -rw-r--r--
py3: slice over bytes to prevent getting ascii values Differential Revision: https://phab.mercurial-scm.org/D2271

FROM centos:centos6
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