Unverified Commit 989ab260 authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub

Merge pull request #16478 from karalabe/fix-alltools-dockerfile

Dockerfile.alltools: fix invalid command
parents c7ab3e55 29213b1f
...@@ -13,7 +13,7 @@ RUN apk add --no-cache ca-certificates ...@@ -13,7 +13,7 @@ RUN apk add --no-cache ca-certificates
COPY --from=builder /go-ethereum/build/bin/* /usr/local/bin/ COPY --from=builder /go-ethereum/build/bin/* /usr/local/bin/
RUN addgroup -g 1000 geth && \ 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 chown geth:geth /root
USER geth USER geth
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment