diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-04-10 19:02:56 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-04-10 19:02:56 +0800 |
commit | 29213b1f8f00834bc1ff8d092ea26c970d5fc0f2 (patch) | |
tree | 5176bbd8aa65b288cbfdc1ed34913400460c1394 /Dockerfile.alltools | |
parent | 149f706fdee89877efd6ca6e168a9a20aaf61a0c (diff) | |
download | dexon-29213b1f8f00834bc1ff8d092ea26c970d5fc0f2.tar.gz dexon-29213b1f8f00834bc1ff8d092ea26c970d5fc0f2.tar.zst dexon-29213b1f8f00834bc1ff8d092ea26c970d5fc0f2.zip |
Dockerfile.alltools: fix invalid command
Diffstat (limited to 'Dockerfile.alltools')
-rw-r--r-- | Dockerfile.alltools | 2 |
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 |