From 88ef0013c5e92aa58d68645d504d9d92cb8f0899 Mon Sep 17 00:00:00 2001 From: lwsanty Date: Fri, 19 Jul 2019 17:19:52 +0300 Subject: [PATCH] Dockerfile -> add git and bash installation Signed-off-by: lwsanty --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 18518c7..7a3546b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ FROM srcd/dind-golang:docker-18.09.7-go-1.12.7 +RUN apk update && apk upgrade && \ + apk add --no-cache bash git + COPY build/bin/bblfsh-performance /root/ WORKDIR /root