mirror of
https://github.com/golang/go
synced 2024-11-19 01:54:39 -07:00
af7d92a90f
Change-Id: I76c04c745367427cd3b474949d213e105f6b47c1 Reviewed-on: https://go-review.googlesource.com/2413 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
15 lines
407 B
Docker
15 lines
407 B
Docker
FROM google/appengine-go
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install --no-install-recommends -y -q curl build-essential git
|
|
RUN mkdir /goroot && curl https://storage.googleapis.com/golang/go1.4.linux-amd64.tar.gz | tar xvzf - -C /goroot --strip-components=1
|
|
RUN mkdir /gopath
|
|
|
|
ENV GOROOT /goroot
|
|
ENV GOPATH /gopath
|
|
ENV PATH $PATH:$GOROOT/bin:$GOPATH/bin
|
|
|
|
WORKDIR /app
|
|
ADD . /app
|
|
RUN /bin/bash /app/_ah/build.sh
|