1
0
Fork 0
nginx-ipscrub/demo/Dockerfile

5 lines
147 B
Docker

FROM ubuntu:latest
RUN apt-get update && apt-get install -y curl
CMD while true; do curl --silent http://nginx:8081/ > /dev/null; sleep 0.5; done