Skip to content

Instantly share code, notes, and snippets.

@wkharold
Created April 5, 2015 20:34
Show Gist options
  • Save wkharold/3c0eda463845bdc6fc9b to your computer and use it in GitHub Desktop.
Save wkharold/3c0eda463845bdc6fc9b to your computer and use it in GitHub Desktop.
per daemon Dockerfile
FROM golang:1.4.2
RUN mkdir -p /go/src/github.com/myrepo/xyzzy
COPY . /go/src/github.com/myrepo/xyzzy
WORKDIR /go/src/github.com/myrepo/xyzzy
RUN go get github.com/tools/godep
RUN godep go install ./cmd/plugh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment