(feat) add dig command (#3)

This commit is contained in:
TP Honey
2022-02-14 15:21:26 +00:00
committed by GitHub
parent 9fabe07502
commit 724e37a70a
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -10,6 +10,7 @@ Installed tools:
- ping
- traceroute
- dig
### Example 1
@@ -30,6 +31,7 @@ steps:
- env
- ping www.github.com -w 5
- traceroute -T -p 443 www.github.com
- dig www.apple.com
- echo "end of test"
```
+1 -1
View File
@@ -1,4 +1,4 @@
FROM ubuntu
RUN apt-get update
RUN apt-get install -y traceroute iputils-ping
RUN apt-get install -y traceroute iputils-ping bind9-dnsutils
ENTRYPOINT /bin/bash