1
0
mirror of https://github.com/golang/go synced 2024-11-18 18:14:43 -07:00
go/cmd/tipgodoc/Dockerfile

10 lines
244 B
Docker
Raw Normal View History

FROM golang
RUN apt-get update && apt-get install --no-install-recommends -y -q build-essential git
# golang sets GOPATH=/go
ADD . /go/src/tipgodoc
RUN go install tipgodoc
ENTRYPOINT ["/go/bin/tipgodoc"]
EXPOSE 8080 # what kubernetes expects