mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
The packetdrill-test will have a new base image, and uses the main branch. The packetdrill-v2.0 branch has been over 6 years old, and it is not compatible with the new ubuntu releases. PiperOrigin-RevId: 668173595
8 lines
309 B
Docker
8 lines
309 B
Docker
FROM ubuntu:jammy
|
|
RUN apt-get update && apt-get install -y net-tools git iptables iputils-ping \
|
|
netcat tcpdump jq tar bison flex make
|
|
# Pick up updated git.
|
|
RUN hash -r
|
|
RUN git clone --depth 1 https://github.com/google/packetdrill.git
|
|
RUN cd packetdrill/gtests/net/packetdrill && ./configure && make
|