diff options
author | Camil Staps | 2016-09-22 13:30:49 +0200 |
---|---|---|
committer | Camil Staps | 2016-09-22 13:30:49 +0200 |
commit | d134fe0cec3ca346ddae3176fb7bfab0888f5527 (patch) | |
tree | 251d31fe381047323244b392ceaa6ba7433c5a01 /examples/fortune | |
parent | Remove moby.svg (diff) |
Introductie, dockerfiles, cli
Diffstat (limited to 'examples/fortune')
-rw-r--r-- | examples/fortune/Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/fortune/Dockerfile b/examples/fortune/Dockerfile new file mode 100644 index 0000000..b718b53 --- /dev/null +++ b/examples/fortune/Dockerfile @@ -0,0 +1,11 @@ +# Base image +FROM debian:jessie +# Metadata +MAINTAINER Camil Staps <info@camilstaps.nl> + +# Derivations from base image +RUN apt-get update -qq && apt-get install -qq -y fortune + +# Command +ENTRYPOINT /usr/games/fortune +CMD -s |