From e8ebcede5b669a283ff04f9c0d9af3ede7fe0f6e Mon Sep 17 00:00:00 2001 From: Johannes 'fish' Ziemke Date: Fri, 20 Jun 2014 18:16:02 +0200 Subject: [PATCH] Install GCC in Dockerfile This also removes make which isn't in use anymore. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a6fa30a3..38f14547 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:13.10 MAINTAINER Prometheus Team -RUN apt-get update && apt-get install -yq curl git mercurial make +RUN apt-get update && apt-get install -yq curl git mercurial gcc RUN curl -s https://go.googlecode.com/files/go1.2.linux-amd64.tar.gz | tar -C /usr/local -xzf - ENV PATH /usr/local/go/bin:$PATH ENV GOPATH /go