mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7 lines
324 B
Text
7 lines
324 B
Text
|
# this Dockerfile is solely used for the master image.
|
||
|
# Please refer to the top-level Makefile for the worker image.
|
||
|
FROM golang:1.7
|
||
|
ADD . /go/src/github.com/docker/docker/hack/integration-cli-on-swarm/agent
|
||
|
RUN go build -o /master github.com/docker/docker/hack/integration-cli-on-swarm/agent/master
|
||
|
ENTRYPOINT ["/master"]
|