mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-15 03:36:33 +03:00
10 lines
168 B
Docker
10 lines
168 B
Docker
FROM golang:1.4.1
|
|
|
|
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
|
|
|
|
CMD ["pgweb"] |