From 6e4ef733cee9daf4d611e15f878319c71280a705 Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Sat, 15 Mar 2014 11:56:16 -0700 Subject: [PATCH] Use crosbymichael/golang as base image --- Dockerfile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9de1a7787..dcdfcf2c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,5 @@ -FROM ubuntu:12.04 +FROM crosbymichael/golang -RUN apt-get update - -RUN apt-get install -y curl -RUN curl -s https://go.googlecode.com/files/go1.2.linux-amd64.tar.gz | tar -v -C /opt -xz ;\ - cp -a /opt/go/* /usr/local/ ;\ - rm -rf /opt/go; - -ENV GOROOT /usr/local/ ADD . /app/ WORKDIR /app/ RUN go build dockerui.go