Remove update from dockerfile

pull/2/head
Michael Crosby 2014-02-14 20:29:08 -08:00
parent 49adc06c49
commit c3850e4351
2 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,6 @@
FROM ubuntu:12.04
RUN apt-get update
RUN apt-get upgrade -y
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 ;\
@ -13,4 +12,4 @@ ADD . /app/
WORKDIR /app/
RUN go build dockerui.go
EXPOSE 9000
ENTRYPOINT ["./dockerui"]
ENTRYPOINT ["./dockerui"]

View File

@ -1 +0,0 @@
..