Initial commit
This commit is contained in:
7
kapitel10/10_3_1_1/alice.Dockerfile
Normal file
7
kapitel10/10_3_1_1/alice.Dockerfile
Normal file
@@ -0,0 +1,7 @@
|
||||
FROM debian:11-slim
|
||||
RUN apt-get update && apt-get install -y cowsay \
|
||||
&& apt-get clean
|
||||
COPY cow-say-alice.sh /cow-say-alice.sh
|
||||
RUN chmod +x /cow-say-alice.sh
|
||||
ADD http://jackbenny.se/docs/alice.txt /alice.txt
|
||||
CMD ["/cow-say-alice.sh"]
|
3
kapitel10/10_3_1_1/cow-say-alice.sh
Normal file
3
kapitel10/10_3_1_1/cow-say-alice.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/games"
|
||||
egrep "Down the Rabbit-Hole" /alice.txt -A 7 | cowsay
|
Reference in New Issue
Block a user