Skip to content

Commit

Permalink
Add gcc to the go builder.
Browse files Browse the repository at this point in the history
  • Loading branch information
bendory authored and skelterjohn committed Nov 17, 2017
1 parent 21e64df commit 6599027
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions go/Dockerfile.alpine
@@ -1,7 +1,7 @@
FROM golang:alpine

# Install VCS tools to support "go get" commands.
RUN apk add --update --no-cache git mercurial subversion
# Install VCS tools to support "go get" commands and install gcc.
RUN apk add --update --no-cache git mercurial subversion build-base

# We blank out the GOPATH because the base image sets it, and
# if the user of this build step does *not* set it, we want to
Expand Down
4 changes: 2 additions & 2 deletions go/Dockerfile.debian
@@ -1,7 +1,7 @@
FROM golang

# Install VCS tools to support "go get" commands.
RUN apt-get update -qqy && apt-get install -qqy git mercurial subversion
# Install VCS tools to support "go get" commands and install gcc.
RUN apt-get update -qqy && apt-get install -qqy git mercurial subversion gcc

# We blank out the GOPATH because the base image sets it, and
# if the user of this build step does *not* set it, we want to
Expand Down
4 changes: 2 additions & 2 deletions go/Dockerfile.wheezy
@@ -1,7 +1,7 @@
FROM golang:wheezy

# Install VCS tools to support "go get" commands.
RUN apt-get update -qqy && apt-get install -qqy git mercurial subversion
# Install VCS tools to support "go get" commands and install gcc.
RUN apt-get update -qqy && apt-get install -qqy git mercurial subversion gcc

# We blank out the GOPATH because the base image sets it, and
# if the user of this build step does *not* set it, we want to
Expand Down

0 comments on commit 6599027

Please sign in to comment.