mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-15 20:13:06 +03:00
13 lines
186 B
Docker
13 lines
186 B
Docker
FROM golang:1.3
|
|
|
|
COPY . /go/src/pgweb
|
|
WORKDIR /go/src/pgweb
|
|
|
|
RUN go get github.com/tools/godep
|
|
|
|
RUN godep restore && \
|
|
godep go build && \
|
|
godep go install
|
|
|
|
ENTRYPOINT ["pgweb"]
|