瀏覽代碼

Dockerfile.alltools: fix invalid command

Péter Szilágyi 7 年之前
父節點
當前提交
29213b1f8f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Dockerfile.alltools

+ 1 - 1
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