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 \
|
|
|
|
; \
|
|
|
|
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
|
|
|
|
|
|
|
|
# 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-06-18 19:34:34 +02:00
|
|
|
ENV ALL_DOCKER_VERSIONS 1.6.0 1.7.0
|
2015-03-23 22:41:53 +01:00
|
|
|
|
|
|
|
RUN set -ex; \
|
2015-04-27 16:18:00 +02:00
|
|
|
curl https://get.docker.com/builds/Linux/x86_64/docker-1.6.0 -o /usr/local/bin/docker-1.6.0; \
|
2015-06-02 15:28:21 +02:00
|
|
|
chmod +x /usr/local/bin/docker-1.6.0; \
|
2015-06-18 19:34:34 +02:00
|
|
|
curl https://test.docker.com/builds/Linux/x86_64/docker-1.7.0 -o /usr/local/bin/docker-1.7.0; \
|
|
|
|
chmod +x /usr/local/bin/docker-1.7.0
|
2015-02-23 12:01:37 +01:00
|
|
|
|
2015-03-23 22:16:14 +01:00
|
|
|
# Set the default Docker to be run
|
2015-04-27 16:18:00 +02:00
|
|
|
RUN ln -s /usr/local/bin/docker-1.6.0 /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
|
|
|
|
|
|
|
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
|
|
|
|
2014-01-16 18:28:47 +01:00
|
|
|
ADD requirements-dev.txt /code/
|
|
|
|
RUN pip install -r requirements-dev.txt
|
2014-07-30 22:11:11 +02:00
|
|
|
|
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"]
|