aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile.alltools
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-04-10 19:02:56 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-04-10 19:02:56 +0800
commit29213b1f8f00834bc1ff8d092ea26c970d5fc0f2 (patch)
tree5176bbd8aa65b288cbfdc1ed34913400460c1394 /Dockerfile.alltools
parent149f706fdee89877efd6ca6e168a9a20aaf61a0c (diff)
downloaddexon-29213b1f8f00834bc1ff8d092ea26c970d5fc0f2.tar
dexon-29213b1f8f00834bc1ff8d092ea26c970d5fc0f2.tar.gz
dexon-29213b1f8f00834bc1ff8d092ea26c970d5fc0f2.tar.bz2
dexon-29213b1f8f00834bc1ff8d092ea26c970d5fc0f2.tar.lz
dexon-29213b1f8f00834bc1ff8d092ea26c970d5fc0f2.tar.xz
dexon-29213b1f8f00834bc1ff8d092ea26c970d5fc0f2.tar.zst
dexon-29213b1f8f00834bc1ff8d092ea26c970d5fc0f2.zip
Dockerfile.alltools: fix invalid command
Diffstat (limited to 'Dockerfile.alltools')
-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