docker: don't remove executables in Docker image

Let's keep all executables in the Docker image (objectives).
This commit is contained in:
Robert Zaremba 2017-07-05 00:45:18 +02:00
parent 138f26c93a
commit 5270417f50

View file

@ -4,7 +4,7 @@ ADD . /go-ethereum
RUN \
apk add --update git go make gcc musl-dev linux-headers && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /usr/local/bin/ && \
cp go-ethereum/build/bin/* /usr/local/bin/ && \
apk del git go make gcc musl-dev linux-headers && \
rm -rf /go-ethereum && rm -rf /var/cache/apk/*