view contrib/docker/centos6 @ 35673:134ef400cb11

revset: use 'tiprev' when appropriate This is cleaner than the current 'len(repo) - 1' forms
author Boris Feld <boris.feld@octobus.net>
date Thu, 04 May 2017 02:28:19 +0200
parents 1baa077214ae
children
line wrap: on
line source

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