Dockerfile.run 384 B

1234567891011121314
  1. FROM alpine:3.4
  2. ARG version
  3. RUN apk -U add \
  4. python \
  5. py-pip
  6. COPY requirements.txt /code/requirements.txt
  7. RUN pip install -r /code/requirements.txt
  8. COPY dist/docker_compose-${version}-py2.py3-none-any.whl /code/
  9. RUN pip install --no-deps /code/docker_compose-${version}-py2.py3-none-any.whl
  10. ENTRYPOINT ["/usr/bin/docker-compose"]