This commit is contained in:
Jessica Frazelle
2015-04-16 11:16:26 -07:00
parent e4f12f7ffd
commit 5b0d62ea31
2 changed files with 202 additions and 0 deletions

21
nerdy/Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
ca-certificates \
cowsay \
curl \
figlet \
imagemagick \
jp2a \
python \
--no-install-recommends
ENV HOME /root
WORKDIR $HOME
COPY ./lolcat /usr/bin/lolcat
RUN echo 'image_me() { convert $1 jpg:- | jp2a ${*:2} -; }' >> $HOME/.bashrc
ENTRYPOINT [ "bash" ]