mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
ubuntu:jammy is 22.04, which is a LTS version. This is the third wave. PiperOrigin-RevId: 666528422
9 lines
152 B
Docker
9 lines
152 B
Docker
FROM ubuntu:jammy
|
|
|
|
RUN set -x \
|
|
&& apt-get update \
|
|
&& apt-get install -y \
|
|
iperf \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|