From ac417d12006d46973a8d2b4778dec5ad3411e388 Mon Sep 17 00:00:00 2001 From: Jing Chen Date: Tue, 27 Aug 2024 15:54:34 -0700 Subject: [PATCH] Update packetdrill-test. 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 --- images/packetdrill/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/images/packetdrill/Dockerfile b/images/packetdrill/Dockerfile index b4cd73006..4c9c1453b 100644 --- a/images/packetdrill/Dockerfile +++ b/images/packetdrill/Dockerfile @@ -1,8 +1,7 @@ -FROM ubuntu:bionic +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 --branch packetdrill-v2.0 \ - https://github.com/google/packetdrill.git +RUN git clone --depth 1 https://github.com/google/packetdrill.git RUN cd packetdrill/gtests/net/packetdrill && ./configure && make