1
0
mirror of synced 2024-07-05 10:29:20 +02:00
nginx-ipscrub/demo/Dockerfile

5 lines
147 B
Docker
Raw Normal View History

2018-03-31 02:47:17 +02:00
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