1
0
mirror of synced 2024-06-10 14:39:58 +02:00
nginx-ipscrub/demo/Dockerfile
Mason Simon 21582cc86a Init
2018-03-30 17:47:17 -07:00

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