FROM debian:jessie-slim ENV PROJECT=heat ARG DOCKER_REPO=yaodu/openstack-requirements ARG DOCKER_TAG=latest ARG WHEELS ARG PROJECT_REPO=https://git.openstack.org/openstack/${PROJECT} ARG PROJECT_REF=master ARG SCRIPTS_REPO=https://github.com/openstack/loci ARG SCRIPTS_REF=master ARG OVERRIDE=override ADD $OVERRIDE / RUN set -x \ && apt-get update \ && apt-get install -y --no-install-recommends git \ && git init /tmp/common/ \ && git --git-dir /tmp/common/.git fetch --depth 1 $SCRIPTS_REPO $SCRIPTS_REF \ && git --work-tree /tmp/common --git-dir /tmp/common/.git checkout FETCH_HEAD \ && /tmp/common/scripts/download.sh \ && /tmp/common/scripts/install.sh \ && /tmp/common/scripts/cleanup.sh