4 lines
175 B
Docker
4 lines
175 B
Docker
FROM docker/whalesay:latest
|
|
LABEL Name=dontstopfolding Version=0.0.1
|
|
RUN apt-get -y update && apt-get install -y fortunes
|
|
CMD ["sh", "-c", "/usr/games/fortune -a | cowsay"] |