contrib/docker/centos6
author Augie Fackler <augie@google.com>
Sat, 17 Feb 2018 22:39:12 -0500
changeset 36276 c95c8ab2e7ec
parent 34423 1baa077214ae
permissions -rw-r--r--
tests: fix get-with-headers.py on python3 when writing to stdout Differential Revision: https://phab.mercurial-scm.org/D2306

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