mirror of https://github.com/docker/compose.git
commit
1a97a8ef86
22
Dockerfile
22
Dockerfile
|
@ -22,46 +22,38 @@ RUN curl https://get.docker.com/builds/Linux/x86_64/docker-latest \
|
||||||
|
|
||||||
# Build Python 2.7.9 from source
|
# Build Python 2.7.9 from source
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -LO https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz; \
|
curl -L https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz | tar -xz; \
|
||||||
tar -xzf Python-2.7.9.tgz; \
|
|
||||||
cd Python-2.7.9; \
|
cd Python-2.7.9; \
|
||||||
./configure --enable-shared; \
|
./configure --enable-shared; \
|
||||||
make; \
|
make; \
|
||||||
make install; \
|
make install; \
|
||||||
cd ..; \
|
cd ..; \
|
||||||
rm -rf /Python-2.7.9; \
|
rm -rf /Python-2.7.9
|
||||||
rm Python-2.7.9.tgz
|
|
||||||
|
|
||||||
# Build python 3.4 from source
|
# Build python 3.4 from source
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -LO https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tgz; \
|
curl -L https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tgz | tar -xz; \
|
||||||
tar -xzf Python-3.4.3.tgz; \
|
|
||||||
cd Python-3.4.3; \
|
cd Python-3.4.3; \
|
||||||
./configure --enable-shared; \
|
./configure --enable-shared; \
|
||||||
make; \
|
make; \
|
||||||
make install; \
|
make install; \
|
||||||
cd ..; \
|
cd ..; \
|
||||||
rm -rf /Python-3.4.3; \
|
rm -rf /Python-3.4.3
|
||||||
rm Python-3.4.3.tgz
|
|
||||||
|
|
||||||
# Make libpython findable
|
# Make libpython findable
|
||||||
ENV LD_LIBRARY_PATH /usr/local/lib
|
ENV LD_LIBRARY_PATH /usr/local/lib
|
||||||
|
|
||||||
# Install setuptools
|
# Install setuptools
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -LO https://bootstrap.pypa.io/ez_setup.py; \
|
curl -L https://bootstrap.pypa.io/ez_setup.py | python
|
||||||
python ez_setup.py; \
|
|
||||||
rm ez_setup.py
|
|
||||||
|
|
||||||
# Install pip
|
# Install pip
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -LO https://pypi.python.org/packages/source/p/pip/pip-7.0.1.tar.gz; \
|
curl -L https://pypi.python.org/packages/source/p/pip/pip-7.0.1.tar.gz | tar -xz; \
|
||||||
tar -xzf pip-7.0.1.tar.gz; \
|
|
||||||
cd pip-7.0.1; \
|
cd pip-7.0.1; \
|
||||||
python setup.py install; \
|
python setup.py install; \
|
||||||
cd ..; \
|
cd ..; \
|
||||||
rm -rf pip-7.0.1; \
|
rm -rf pip-7.0.1
|
||||||
rm pip-7.0.1.tar.gz
|
|
||||||
|
|
||||||
# Python3 requires a valid locale
|
# Python3 requires a valid locale
|
||||||
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
|
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
|
||||||
|
|
Loading…
Reference in New Issue