gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/images/benchmarks/nginx/Dockerfile (about) 1 FROM nginx:1.25.1 2 3 # Generate a bunch of relevant files. 4 RUN mkdir -p /local && \ 5 for size in 1 10 100 1024 10240; do \ 6 dd if=/dev/zero of=/local/latin${size}k.txt count=${size} bs=1024; \ 7 done 8 9 RUN touch /local/index.html 10 11 COPY ./nginx.conf /etc/nginx/nginx.conf 12 COPY ./nginx_gofer.conf /etc/nginx/nginx_gofer.conf