gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/images/basic/integrationtest/Dockerfile (about) 1 FROM ubuntu:bionic 2 3 WORKDIR /root 4 COPY . . 5 RUN chmod +x *.sh 6 7 RUN apt-get update && apt-get install -y gcc iputils-ping iproute2 8 9 # Compilation Steps. 10 RUN gcc -O2 -o test_copy_up test_copy_up.c 11 RUN gcc -O2 -o test_rewinddir test_rewinddir.c 12 RUN gcc -O2 -o link_test link_test.c 13 RUN gcc -O2 -o test_sticky test_sticky.c 14 RUN gcc -O2 -o host_fd host_fd.c 15 RUN gcc -O2 -o host_connect host_connect.c