Skip to content

Commit eb3694b

Browse files
authored
Dockerfile -> add gcc installation (#14)
Signed-off-by: lwsanty <lwsanty@gmail.com>
1 parent 4948ef4 commit eb3694b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM srcd/dind-golang:docker-18.09.7-go-1.12.7
22

33
RUN apk update && apk upgrade && \
4-
apk add --no-cache bash git
4+
apk add --no-cache bash git build-base
55

66
COPY build/bin/bblfsh-performance /root/
77
WORKDIR /root

common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ func ExecCmd(command string) error {
124124
cmd.Stdin = strings.NewReader(command)
125125

126126
data, err := cmd.CombinedOutput()
127-
log.Debugf("command output %v", string(data))
127+
log.Debugf("command output: %v", string(data))
128128
if err != nil {
129129
return errCmdFailed.New(err, string(data))
130130
}

0 commit comments

Comments
 (0)