Dockerfile 324 B

123456
  1. # this Dockerfile is solely used for the master image.
  2. # Please refer to the top-level Makefile for the worker image.
  3. FROM golang:1.7
  4. ADD . /go/src/github.com/docker/docker/hack/integration-cli-on-swarm/agent
  5. RUN go build -o /master github.com/docker/docker/hack/integration-cli-on-swarm/agent/master
  6. ENTRYPOINT ["/master"]