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 second wave. PiperOrigin-RevId: 666485330
11 lines
223 B
Docker
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
|