Created
June 29, 2014 02:21
-
-
Save tmtk75/60ae42c21acf3f555c95 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM centos | |
RUN yum install -y http://ftp.riken.jp/Linux/fedora/epel/6/i386/epel-release-6-8.noarch.rpm | |
RUN yum install -y golang | |
RUN yum install -y git | |
ENV GOPATH /.go | |
RUN go get -u github.com/armon/consul-kv | |
RUN go get -u github.com/hashicorp/envconsul | |
WORKDIR /.go/src/github.com/hashicorp/envconsul | |
RUN go build | |
CMD ["cp", "envconsul", "/target"] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment