mirror of
https://github.com/golang/go
synced 2024-11-06 01:46:12 -07:00
a160d803d7
Run godoc indexing just once on startup. Wait for indexing to complete before switching to new side. Increase startup timeout to accommodate for indexing. Updates golang/go#9996. Change-Id: I1e746a68b7d787e6d7f180c2617ea75f0d3291f8 Reviewed-on: https://go-review.googlesource.com/7120 Reviewed-by: Andrew Gerrand <adg@golang.org>
14 lines
357 B
Docker
14 lines
357 B
Docker
FROM golang:1.4.2
|
|
|
|
RUN apt-get update && apt-get install --no-install-recommends -y -q build-essential git
|
|
|
|
# golang puts its go install here (weird but true)
|
|
ENV GOROOT_BOOTSTRAP /usr/src/go
|
|
|
|
# golang sets GOPATH=/go
|
|
ADD . /go/src/tipgodoc
|
|
RUN go install tipgodoc
|
|
ENTRYPOINT ["/go/bin/tipgodoc"]
|
|
# Kubernetes expects us to listen on port 8080
|
|
EXPOSE 8080
|