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 \
|
|
|
|
python \
|
|
|
|
python-pip \
|
|
|
|
python-dev \
|
|
|
|
git \
|
|
|
|
apt-transport-https \
|
|
|
|
ca-certificates \
|
|
|
|
curl \
|
|
|
|
lxc \
|
|
|
|
iptables \
|
|
|
|
; \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2015-04-01 20:59:21 +02:00
|
|
|
ENV ALL_DOCKER_VERSIONS 1.6.0-rc4
|
2015-03-23 22:41:53 +01:00
|
|
|
|
|
|
|
RUN set -ex; \
|
2015-04-01 20:59:21 +02:00
|
|
|
curl https://test.docker.com/builds/Linux/x86_64/docker-1.6.0-rc4 -o /usr/local/bin/docker-1.6.0-rc4; \
|
|
|
|
chmod +x /usr/local/bin/docker-1.6.0-rc4
|
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-01 20:59:21 +02:00
|
|
|
RUN ln -s /usr/local/bin/docker-1.6.0-rc4 /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"]
|