File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,12 @@ RUN apk add --no-cache git python3 python3-dev
55
66# build wheels in first image
77ADD . /tmp/src
8+ RUN cd /tmp/src && git clean -xfd && git status
89RUN mkdir /tmp/wheelhouse \
910 && cd /tmp/wheelhouse \
1011 && pip3 install wheel \
11- && pip3 wheel --no-cache-dir /tmp/src
12+ && pip3 wheel --no-cache-dir /tmp/src \
13+ && ls -l /tmp/wheelhouse
1214
1315FROM alpine:${ALPINE_VERSION}
1416
@@ -17,7 +19,8 @@ RUN apk add --no-cache git git-lfs python3 bash
1719
1820# install repo2docker
1921COPY --from=0 /tmp/wheelhouse /tmp/wheelhouse
20- RUN pip3 install --no-cache-dir /tmp/wheelhouse/*.whl
22+ RUN pip3 install --no-cache-dir /tmp/wheelhouse/*.whl \
23+ && pip3 list
2124
2225# add git-credential helper
2326COPY ./docker/git-credential-env /usr/local/bin/git-credential-env
You can’t perform that action at this time.
0 commit comments