2014-08-31 12:53:59 +02:00
|
|
|
FROM debian:wheezy
|
2015-02-23 12:01:37 +01:00
|
|
|
|
2015-02-25 14:52:55 +01:00
|
|
|
RUN set -ex; \
|
|
|
|
apt-get update -qq; \
|
|
|
|
apt-get install -y \
|
2015-06-01 15:01:30 +02:00
|
|
|
gcc \
|
|
|
|
make \
|
|
|
|
zlib1g \
|
|
|
|
zlib1g-dev \
|
|
|
|
libssl-dev \
|
2015-02-25 14:52:55 +01:00
|
|
|
git \
|
|
|
|
apt-transport-https \
|
|
|
|
ca-certificates \
|
|
|
|
curl \
|
|
|
|
lxc \
|
|
|
|
iptables \
|
2015-08-24 21:15:08 +02:00
|
|
|
libsqlite3-dev \
|
2015-02-25 14:52:55 +01:00
|
|
|
; \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2015-06-01 15:01:30 +02:00
|
|
|
# Build Python 2.7.9 from source
|
|
|
|
RUN set -ex; \
|
|
|
|
curl -LO https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz; \
|
|
|
|
tar -xzf Python-2.7.9.tgz; \
|
|
|
|
cd Python-2.7.9; \
|
|
|
|
./configure --enable-shared; \
|
|
|
|
make; \
|
|
|
|
make install; \
|
|
|
|
cd ..; \
|
|
|
|
rm -rf /Python-2.7.9; \
|
|
|
|
rm Python-2.7.9.tgz
|
|
|
|
|
2015-07-03 04:35:20 +02:00
|
|
|
# Build python 3.4 from source
|
|
|
|
RUN set -ex; \
|
|
|
|
curl -LO https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tgz; \
|
|
|
|
tar -xzf Python-3.4.3.tgz; \
|
|
|
|
cd Python-3.4.3; \
|
|
|
|
./configure --enable-shared; \
|
|
|
|
make; \
|
|
|
|
make install; \
|
|
|
|
cd ..; \
|
|
|
|
rm -rf /Python-3.4.3; \
|
|
|
|
rm Python-3.4.3.tgz
|
|
|
|
|
2015-06-01 15:01:30 +02:00
|
|
|
# Make libpython findable
|
|
|
|
ENV LD_LIBRARY_PATH /usr/local/lib
|
|
|
|
|
|
|
|
# Install setuptools
|
|
|
|
RUN set -ex; \
|
|
|
|
curl -LO https://bootstrap.pypa.io/ez_setup.py; \
|
|
|
|
python ez_setup.py; \
|
|
|
|
rm ez_setup.py
|
|
|
|
|
|
|
|
# Install pip
|
|
|
|
RUN set -ex; \
|
|
|
|
curl -LO https://pypi.python.org/packages/source/p/pip/pip-7.0.1.tar.gz; \
|
|
|
|
tar -xzf pip-7.0.1.tar.gz; \
|
|
|
|
cd pip-7.0.1; \
|
|
|
|
python setup.py install; \
|
|
|
|
cd ..; \
|
|
|
|
rm -rf pip-7.0.1; \
|
|
|
|
rm pip-7.0.1.tar.gz
|
|
|
|
|
2015-08-14 13:42:33 +02:00
|
|
|
ENV ALL_DOCKER_VERSIONS 1.7.1 1.8.1
|
2015-03-23 22:41:53 +01:00
|
|
|
|
|
|
|
RUN set -ex; \
|
2015-07-15 12:42:51 +02:00
|
|
|
curl https://get.docker.com/builds/Linux/x86_64/docker-1.7.1 -o /usr/local/bin/docker-1.7.1; \
|
2015-08-05 16:39:07 +02:00
|
|
|
chmod +x /usr/local/bin/docker-1.7.1; \
|
2015-08-14 13:42:33 +02:00
|
|
|
curl https://get.docker.com/builds/Linux/x86_64/docker-1.8.1 -o /usr/local/bin/docker-1.8.1; \
|
|
|
|
chmod +x /usr/local/bin/docker-1.8.1
|
2015-02-23 12:01:37 +01:00
|
|
|
|
2015-03-23 22:16:14 +01:00
|
|
|
# Set the default Docker to be run
|
2015-07-28 15:51:27 +02:00
|
|
|
RUN ln -s /usr/local/bin/docker-1.7.1 /usr/local/bin/docker
|
2015-03-23 22:16:14 +01:00
|
|
|
|
2014-09-30 20:54:13 +02:00
|
|
|
RUN useradd -d /home/user -m -s /bin/bash user
|
2014-01-16 18:28:47 +01:00
|
|
|
WORKDIR /code/
|
2014-07-30 22:11:11 +02:00
|
|
|
|
2015-07-03 04:35:20 +02:00
|
|
|
RUN pip install tox
|
|
|
|
|
2014-07-30 22:11:11 +02:00
|
|
|
ADD requirements.txt /code/
|
2014-01-16 18:28:47 +01:00
|
|
|
RUN pip install -r requirements.txt
|
2014-07-30 22:11:11 +02:00
|
|
|
|
2015-03-26 23:28:02 +01:00
|
|
|
ADD requirements-dev.txt /code/
|
|
|
|
RUN pip install -r requirements-dev.txt
|
2014-07-30 22:11:11 +02:00
|
|
|
|
2015-08-24 21:15:08 +02:00
|
|
|
RUN pip install tox==2.1.1
|
|
|
|
|
2014-01-16 18:28:47 +01:00
|
|
|
ADD . /code/
|
2014-07-30 22:11:11 +02:00
|
|
|
RUN python setup.py install
|
2014-09-30 20:54:13 +02:00
|
|
|
|
|
|
|
RUN chown -R user /code/
|
2014-11-20 18:23:43 +01:00
|
|
|
|
2015-01-20 12:27:10 +01:00
|
|
|
ENTRYPOINT ["/usr/local/bin/docker-compose"]
|