mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
592 B
17 lines
592 B
8 years ago
|
FROM centos:centos6
|
||
|
LABEL MAINTAINER Jumpserver Team <ibuler@qq.com>
|
||
|
|
||
|
WORKDIR /tmp
|
||
|
|
||
|
RUN yum -y install wget sqlite-devel xz gcc automake zlib-devel openssl-devel
|
||
|
|
||
|
# Install Python
|
||
|
RUN wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz && \
|
||
|
tar xvf Python-3.6.1.tar.xz && cd Python-3.6.1 && ./configure && make && make install
|
||
|
|
||
|
RUN mv /usr/bin/python /usr/bin/python2
|
||
|
RUN ln -s /usr/local/bin/python3 /usr/bin/python && ln -s /usr/local/bin/pip3 /usr/bin/pip
|
||
|
RUN sed -i 's@/usr/bin/python@/usr/bin/python2@g' /usr/bin/yum
|
||
|
|
||
|
RUN rm -rf /tmp/{Python-3.6.1.tar.xz,Python-3.6.1}
|