From 0e2349fdec843808d65a1db6ef2a16df216c220e Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 6 Sep 2019 12:26:56 +0200 Subject: [PATCH] avoid dirty in repo2docker version in docker image by calling git clean --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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