From 675ecef22c8665e54d8a94302db6cc10987755b7 Mon Sep 17 00:00:00 2001 From: noah40povis Date: Mon, 30 Aug 2021 04:13:35 -0400 Subject: [PATCH] Added bash to docker container (#177) * added bash to docker container * Update Dockerfile Co-authored-by: Sandeep Sreenath Co-authored-by: Sandeep Sreenath --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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