mirror of https://github.com/docker/docs.git
14 lines
326 B
Docker
14 lines
326 B
Docker
FROM golang
|
|
|
|
COPY . /go/src/github.com/docker/vetinari
|
|
|
|
RUN chmod 777 /tmp/
|
|
|
|
RUN GOPATH=/go/:/go/src/github.com/docker/vetinari/Godeps/_workspace go install github.com/docker/vetinari/cmd/vetinari-server
|
|
|
|
EXPOSE 4443
|
|
|
|
WORKDIR /go/src/github.com/docker/vetinari
|
|
|
|
CMD vetinari-server -config cmd/vetinari-server/dev-config.json
|