From ba25f8447aa0735c1c3e878611c1d53e7d98bf6d Mon Sep 17 00:00:00 2001 From: Victor Castell Date: Wed, 10 Nov 2021 12:07:54 +0100 Subject: [PATCH] Revert "Build the new CLI" This reverts commit e58bdfa8e8ac96f4aaf6d3911af5001596ea4e82. --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 37f0182bdc66..c12a8b1f4edf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,9 @@ RUN set -x \ WORKDIR /bor COPY . . -RUN go build -o ./build/bin/bor ./command +RUN make bor-all + +CMD ["/bin/bash"] # Pull Bor into a second stage deploy alpine container FROM alpine:3.14 @@ -20,6 +22,7 @@ RUN set -x \ && rm -rf /var/cache/apk/* COPY --from=builder /bor/build/bin/bor /usr/local/bin/ +COPY --from=builder /bor/build/bin/bootnode /usr/local/bin/ EXPOSE 8545 8546 8547 30303 30303/udp