compose/Dockerfile.run
Daniel Nephin 39cea970b8 alpine docker image for running compose and a script to pull and run it with the
correct volumes.

Signed-off-by: Daniel Nephin <dnephin@gmail.com>
2015-10-02 11:38:35 -04:00

15 lines
376 B
Text

FROM alpine:edge
RUN apk -U add \
python \
py-pip
COPY requirements.txt /code/requirements.txt
RUN pip install -r /code/requirements.txt
ENV VERSION 1.4.0dev
COPY dist/docker-compose-$VERSION.tar.gz /code/docker-compose/
RUN pip install /code/docker-compose/docker-compose-$VERSION/
ENTRYPOINT ["/usr/bin/docker-compose"]