contrib/packaging/docker/centos6
author Boris Feld <boris.feld@octobus.net>
Thu, 06 Sep 2018 16:20:05 -0400
changeset 39525 1a2bfc4d756a
parent 38461 11eda1f1b6e7
child 41234 4c0d4bbdc395
permissions -rw-r--r--
extensions: trace the total time of running all uisetup callbacks Differential Revision: https://phab.mercurial-scm.org/D4510

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