diff --git a/Dockerfile b/Dockerfile index 1e6501a207..8c6e02d56f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,13 @@ # Build Geth in a stock Go builder container FROM golang:1.16-alpine as builder -RUN apk add --no-cache make gcc musl-dev linux-headers git +RUN apk add --no-cache make gcc musl-dev linux-headers git bash ADD . /bor RUN cd /bor && make bor-all +CMD ["/bin/bash"] + # Pull Bor into a second stage deploy alpine container FROM alpine:latest