diff --git a/Dockerfile b/Dockerfile index 0ab7498f..f1d8eace 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,10 +5,12 @@ RUN apk add --no-cache git python3 python3-dev # build wheels in first image ADD . /tmp/src +RUN cd /tmp/src && git clean -xfd && git status RUN mkdir /tmp/wheelhouse \ && cd /tmp/wheelhouse \ && pip3 install wheel \ - && pip3 wheel --no-cache-dir /tmp/src + && pip3 wheel --no-cache-dir /tmp/src \ + && ls -l /tmp/wheelhouse FROM alpine:${ALPINE_VERSION} @@ -17,7 +19,8 @@ RUN apk add --no-cache git git-lfs python3 bash # install repo2docker COPY --from=0 /tmp/wheelhouse /tmp/wheelhouse -RUN pip3 install --no-cache-dir /tmp/wheelhouse/*.whl +RUN pip3 install --no-cache-dir /tmp/wheelhouse/*.whl \ + && pip3 list # add git-credential helper COPY ./docker/git-credential-env /usr/local/bin/git-credential-env diff --git a/hooks/post_push b/hooks/post_push index 3f7f7a9e..a2b89246 100644 --- a/hooks/post_push +++ b/hooks/post_push @@ -1,7 +1,8 @@ #!/bin/bash -# when building jupyter/repo2docker:master also push jupyter/repo2docker:abcd1234 - -HASH_IMAGE="$DOCKER_REPO:${SOURCE_COMMIT:0:8}" -docker tag $DOCKER_REPO:$DOCKER_TAG $HASH_IMAGE -docker push $HASH_IMAGE +# when building jupyter/repo2docker:master +# also push jupyter/repo2docker:1.2.3-3.abcd1234 (replace + with -) +version=$(docker run $DOCKER_REPO:$DOCKER_TAG jupyter-repo2docker --version | sed s@+@-@) +VERSION_IMAGE="$DOCKER_REPO:$version" +docker tag $DOCKER_REPO:$DOCKER_TAG "$VERSION_IMAGE" +docker push "$VERSION_IMAGE"