diff options
author | Eyal Soha <eyalsoha@google.com> | 2020-02-03 12:03:38 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-02-03 12:04:22 -0800 |
commit | 9742daf3c201771d257c0d043347f4eebf3088e0 (patch) | |
tree | fbf56388cafe49a038cc2ac2b5c8e466a816b258 /test/packetdrill/Dockerfile | |
parent | 4d1a648c7c5db8a51416bff647260a1be3b5c12e (diff) |
Add packetdrill tests that use docker.
PiperOrigin-RevId: 292973224
Diffstat (limited to 'test/packetdrill/Dockerfile')
-rw-r--r-- | test/packetdrill/Dockerfile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/packetdrill/Dockerfile b/test/packetdrill/Dockerfile new file mode 100644 index 000000000..bd4451355 --- /dev/null +++ b/test/packetdrill/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:bionic + +RUN apt-get update +RUN apt-get install -y net-tools git iptables iputils-ping netcat tcpdump jq tar +RUN hash -r +RUN git clone --branch packetdrill-v2.0 \ + https://github.com/google/packetdrill.git +RUN cd packetdrill/gtests/net/packetdrill && ./configure && \ + apt-get install -y bison flex make && make |