Skip to content

Commit

Permalink
Add the script and initial Dockerfile for the greeter
Browse files Browse the repository at this point in the history
[refs #de2a989cd7db]
  • Loading branch information
jfahrer committed May 5, 2018
1 parent 0b1faca commit 6b86450
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build_args/Dockerfile
@@ -0,0 +1,7 @@
FROM alpine:3.6

ENV NAME=World

COPY greeter.sh /

CMD ["/greeter.sh"]
2 changes: 2 additions & 0 deletions build_args/greeter.sh
@@ -0,0 +1,2 @@
#!/bin/sh
echo Hello, ${1-$NAME}!

0 comments on commit 6b86450

Please sign in to comment.