mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-15 11:52:12 +03:00
11 lines
130 B
Docker
11 lines
130 B
Docker
FROM golang:1.3
|
|
|
|
COPY . /go/src/pgweb
|
|
WORKDIR /go/src/pgweb
|
|
|
|
RUN touch Makefile
|
|
RUN make setup
|
|
RUN make dev
|
|
|
|
ENTRYPOINT ["pgweb"]
|