contrib/packaging/docker/centos6
author Raphaël Gomès <rgomes@octobus.net>
Wed, 21 Aug 2019 17:56:50 +0200
branchstable
changeset 42805 7521e6d18057
parent 41234 4c0d4bbdc395
permissions -rw-r--r--
makefile: run Rust tests if cargo is installed While no particular minimum toolchain version is targeted as of yet, this serves as a first step to make more people/machines run the Rust tests.

FROM centos:centos6

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