We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4948ef4 commit eb3694bCopy full SHA for eb3694b
Dockerfile
@@ -1,7 +1,7 @@
1
FROM srcd/dind-golang:docker-18.09.7-go-1.12.7
2
3
RUN apk update && apk upgrade && \
4
- apk add --no-cache bash git
+ apk add --no-cache bash git build-base
5
6
COPY build/bin/bblfsh-performance /root/
7
WORKDIR /root
common.go
@@ -124,7 +124,7 @@ func ExecCmd(command string) error {
124
cmd.Stdin = strings.NewReader(command)
125
126
data, err := cmd.CombinedOutput()
127
- log.Debugf("command output %v", string(data))
+ log.Debugf("command output: %v", string(data))
128
if err != nil {
129
return errCmdFailed.New(err, string(data))
130
}
0 commit comments