Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Dockerfile #68

Merged
merged 1 commit into from
Sep 7, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Adding Dockerfile
Signed-off-by: Dave Henderson <[email protected]>
hairyhenderson committed Sep 7, 2016

Verified

This commit was signed with the committer’s verified signature.
mcollina Matteo Collina
commit 519711ab767357f921908fb6880d5320fe6c9c74
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM golang:onbuild

RUN mv /go/bin/app /go/bin/gomplate

ENTRYPOINT [ "gomplate" ]

CMD [ "--help" ]