pgweb/Dockerfile

12 lines
240 B
Docker
Raw Normal View History

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