view contrib/packaging/docker/centos6 @ 44875:7c19eb372438

sslutil: remove code checking for presence of ssl.SSLContext Now that we require the presence of ssl.SSLContext in setup.py, we can remove this code.
author Manuel Jacob <me@manueljacob.de>
date Fri, 29 May 2020 21:18:22 +0200
parents 4c0d4bbdc395
children
line wrap: on
line source

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