mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-12 16:02:40 +01:00
nerdy
This commit is contained in:
21
nerdy/Dockerfile
Normal file
21
nerdy/Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user