docs/Dockerfile

14 lines
314 B
Docker

FROM golang
COPY . /go/src/github.com/docker/notary
RUN chmod 777 /tmp/
RUN GOPATH="/go/src/github.com/docker/notary/Godeps/_workspace:/go/" go install github.com/docker/notary/cmd/notary-server
EXPOSE 4443
WORKDIR /go/src/github.com/docker/notary
CMD notary-server -config cmd/notary-server/dev-config.json