-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
executable file
·25 lines (22 loc) · 812 Bytes
/
Dockerfile
File metadata and controls
executable file
·25 lines (22 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM iganarix/os-ubuntu-18.04
# https://hub.docker.com/r/iganarix/os-ubuntu-18.04/
MAINTAINER iganari
### Install cmatrix && nyancat
RUN DEBIAN_FRONTEND=noninteractive \
apt install -y \
--no-install-recommends \
cmatrix \
nyancat
### Install asciiquarium
RUN apt install -y \
--no-install-recommends \
libcurses-perl \
wget \
unzip \
make && \
yes '' | cpan -i YAML && \
yes '' | cpan -i Term::Animation && \
cd /usr/local/src && \
wget https://github.com/cmatsuoka/asciiquarium/archive/master.zip -O asciiquarium.zip && \
unzip asciiquarium.zip -d /usr/local/src/ && \
ln -s /usr/local/src/asciiquarium-master/asciiquarium /usr/local/bin/asciiquarium