aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-04-10 19:13:52 +0800
committerGitHub <noreply@github.com>2018-04-10 19:13:52 +0800
commit989ab260284e996520144a88623bda894d77aff9 (patch)
treea2417af1b24ac7d9cd48d95d27ac15287849d1ec
parentc7ab3e5544a3293819957281ecb7cfc08b4e9813 (diff)
parent29213b1f8f00834bc1ff8d092ea26c970d5fc0f2 (diff)
downloadgo-tangerine-989ab260284e996520144a88623bda894d77aff9.tar
go-tangerine-989ab260284e996520144a88623bda894d77aff9.tar.gz
go-tangerine-989ab260284e996520144a88623bda894d77aff9.tar.bz2
go-tangerine-989ab260284e996520144a88623bda894d77aff9.tar.lz
go-tangerine-989ab260284e996520144a88623bda894d77aff9.tar.xz
go-tangerine-989ab260284e996520144a88623bda894d77aff9.tar.zst
go-tangerine-989ab260284e996520144a88623bda894d77aff9.zip
Merge pull request #16478 from karalabe/fix-alltools-dockerfile
Dockerfile.alltools: fix invalid command
-rw-r--r--Dockerfile.alltools2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.alltools b/Dockerfile.alltools
index 2175edbcb..ec0ae92dd 100644
--- a/Dockerfile.alltools
+++ b/Dockerfile.alltools
@@ -13,7 +13,7 @@ RUN apk add --no-cache ca-certificates
COPY --from=builder /go-ethereum/build/bin/* /usr/local/bin/
RUN addgroup -g 1000 geth && \
- adduser -h /root -D -u 1000 -G geth geth \
+ adduser -h /root -D -u 1000 -G geth geth && \
chown geth:geth /root
USER geth