Skip to content

Commit

Permalink
Upgrade gVisor images to use ubuntu:jammy as the base image.
Browse files Browse the repository at this point in the history
ubuntu:jammy is 22.04, which is a LTS version.

This is the fifth wave.

PiperOrigin-RevId: 666207165
  • Loading branch information
milantracy authored and gvisor-bot committed Aug 22, 2024
1 parent 9bc24a3 commit 14f7b6c
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion images/basic/integrationtest/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:bionic
FROM ubuntu:jammy

WORKDIR /root
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion images/benchmarks/absl/Dockerfile.x86_64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:jammy

RUN set -x \
&& apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion images/benchmarks/build-grpc/Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:jammy

RUN set -x \
&& apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion images/benchmarks/build-grpc/Dockerfile.x86_64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:jammy

RUN set -x \
&& apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion images/benchmarks/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:jammy

RUN set -x \
&& apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion images/benchmarks/fio/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:jammy

RUN set -x \
&& apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion images/benchmarks/hackbench/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:jammy

RUN set -x \
&& apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion images/benchmarks/hey/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /go/src/github.com/rakyll/hey
RUN go mod download
RUN CGO_ENABLED=0 go build -o /hey hey.go

FROM ubuntu:18.04
FROM ubuntu:jammy
RUN set -x \
&& apt-get update \
&& apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion images/benchmarks/httpd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:jammy

RUN set -x \
&& apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion images/benchmarks/iperf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:jammy

RUN set -x \
&& apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion images/benchmarks/sysbench/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:jammy

RUN set -x \
&& apt-get update \
Expand Down

0 comments on commit 14f7b6c

Please sign in to comment.