mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-14 19:21:46 +03:00
12 lines
175 B
Docker
12 lines
175 B
Docker
FROM golang:1.3
|
|
|
|
COPY . /go/src/pgweb
|
|
WORKDIR /go/src/pgweb
|
|
|
|
RUN go get github.com/tools/godep
|
|
|
|
RUN godep restore
|
|
RUN godep go build && godep go install
|
|
|
|
ENTRYPOINT ["pgweb"]
|