Files
docker-docs/Dockerfile
Victor Vieux 2d0d3c92b4 fix static compile with go 1.4
Signed-off-by: Victor Vieux <vieux@docker.com>
2015-07-06 17:09:37 -07:00

16 lines
414 B
Docker

FROM golang:1.4
COPY . /go/src/github.com/docker/swarm
WORKDIR /go/src/github.com/docker/swarm
ENV GOPATH /go/src/github.com/docker/swarm/Godeps/_workspace:$GOPATH
RUN CGO_ENABLED=0 go install -v -a -tags netgo -installsuffix netgo -ldflags "-w -X github.com/docker/swarm/version.GITCOMMIT `git rev-parse --short HEAD`"
ENV SWARM_HOST :2375
EXPOSE 2375
VOLUME $HOME/.swarm
ENTRYPOINT ["swarm"]
CMD ["--help"]