diff options
Diffstat (limited to 'examples')
-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 |