pgweb/Dockerfile

12 lines
240 B
Docker
Raw Permalink Normal View History

FROM golang:1.5
2014-10-28 19:02:27 +11:00
COPY . /go/src/github.com/sosedoff/pgweb
WORKDIR /go/src/github.com/sosedoff/pgweb
2014-10-28 19:02:27 +11:00
2014-11-05 18:53:41 -06:00
RUN go get github.com/tools/godep
RUN godep restore
RUN godep go build && godep go install
2014-10-28 19:02:27 +11:00
2015-07-14 22:26:32 -05:00
EXPOSE 8081
CMD ["pgweb", "--bind", "0.0.0.0"]