diff options
author | Peter Johnston <peterjohnston@google.com> | 2020-12-07 08:42:09 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-12-07 08:44:44 -0800 |
commit | eeb23531ebef4fc44af317b4e4a8834c8b069dd9 (patch) | |
tree | 59e719d4f35672554d943608ed8ac318f18bdcd8 /images/basic/ping4test/Dockerfile | |
parent | a97ceec01bc464c9efa5d8140906c46f637e9002 (diff) |
Support icmpv6 transport protocol
PiperOrigin-RevId: 346101076
Diffstat (limited to 'images/basic/ping4test/Dockerfile')
-rw-r--r-- | images/basic/ping4test/Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/images/basic/ping4test/Dockerfile b/images/basic/ping4test/Dockerfile new file mode 100644 index 000000000..1536be376 --- /dev/null +++ b/images/basic/ping4test/Dockerfile @@ -0,0 +1,7 @@ +FROM ubuntu:bionic + +WORKDIR /root +COPY ping4.sh . +RUN chmod +x ping4.sh + +RUN apt-get update && apt-get install -y iputils-ping |