contrib/packaging/docker/centos6
author Yuya Nishihara <yuya@tcha.org>
Fri, 07 Sep 2018 22:12:46 +0900
changeset 39485 6772cf74ff6f
parent 38461 11eda1f1b6e7
child 41234 4c0d4bbdc395
permissions -rw-r--r--
hgweb: show shortlog by default in json output (issue5978)

FROM centos:centos6

RUN groupadd -g 1000 build && \
    useradd -u 1000 -g 1000 -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