Files
Jing ChenandgVisor bot 9bc24a33e9 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
2024-08-22 14:20:09 -07:00

11 lines
223 B
Docker

FROM ubuntu:jammy
RUN set -x \
&& apt-get update \
&& apt-get install -y \
gcc \
&& rm -rf /var/lib/apt/lists/*
COPY ./syscallbench.c /
RUN gcc /syscallbench.c -o /usr/bin/syscallbench