github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/images/benchmarks/nginx/Dockerfile (about) 1 FROM nginx:1.15.10 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