##// END OF EJS Templates
contrib: install Python 2.7.17 and 3.7.5 in Windows environment...
contrib: install Python 2.7.17 and 3.7.5 in Windows environment These are the latest Python versions and we should use them.

File last commit:

r41270:4c0d4bbd default
r43619:8676a8b2 stable
Show More
centos6
24 lines | 392 B | text/plain | TextLexer
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