Skip to content

Commit

Permalink
Dockerfile -> add gcc installation
Browse files Browse the repository at this point in the history
Signed-off-by: lwsanty <lwsanty@gmail.com>
  • Loading branch information
lwsanty committed Jul 22, 2019
1 parent 88ef001 commit 069bb1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM srcd/dind-golang:docker-18.09.7-go-1.12.7

RUN apk update && apk upgrade && \
apk add --no-cache bash git
apk add --no-cache bash git build-base

COPY build/bin/bblfsh-performance /root/
WORKDIR /root
Expand Down
2 changes: 1 addition & 1 deletion common.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func ExecCmd(command string) error {
cmd.Stdin = strings.NewReader(command)

data, err := cmd.CombinedOutput()
log.Debugf("command output %v", string(data))
log.Debugf("command output: %v", string(data))
if err != nil {
return errCmdFailed.New(err, string(data))
}
Expand Down

0 comments on commit 069bb1e

Please sign in to comment.