Skip to content

Instantly share code, notes, and snippets.

@drstearns
Last active March 21, 2018 23:59
Show Gist options
  • Save drstearns/b4a4de4c622203cafdf1a60a9e3e03c8 to your computer and use it in GitHub Desktop.
Save drstearns/b4a4de4c622203cafdf1a60a9e3e03c8 to your computer and use it in GitHub Desktop.
docker cowsay
FROM ubuntu:16.04
RUN apt-get update && apt-get install -y fortune cowsay && rm -rf /var/lib/apt/lists/*
ENV PATH "$PATH:/usr/games"
CMD [ "/bin/bash", "-c", "/usr/games/fortune | /usr/games/cowsay" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment