Upgrade gVisor images to use ubuntu:jammy as the base image.

ubuntu:jammy is 22.04, which is a LTS version.

This is the second wave.

PiperOrigin-RevId: 666485330
This commit is contained in:
Jing Chen
2024-08-22 14:20:09 -07:00
committed by gVisor bot
parent 2687806e18
commit 9bc24a33e9
3 changed files with 4 additions and 4 deletions
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:jammy
RUN set -x \
&& apt-get update \
+1 -1
View File
@@ -1,3 +1,3 @@
FROM ubuntu:bionic
FROM ubuntu:jammy
RUN apt-get update && apt-get install -y wget
+2 -2
View File
@@ -1,4 +1,4 @@
FROM ubuntu:20.04 as build
FROM ubuntu:jammy as build
# Install build dependencies:
RUN apt-get update && apt-get install -y git build-essential libssl-dev libz-dev
@@ -22,7 +22,7 @@ RUN cd /tmp/wrk2 \
# Make.
RUN cd /tmp/wrk2 && make
FROM ubuntu:20.04
FROM ubuntu:jammy
RUN set -x \
&& apt-get update \
&& apt-get install -y \