curl to loop

This commit is contained in:
2021-03-28 03:56:28 +02:00
parent 1e253595f4
commit 3de3317a50
3 changed files with 34 additions and 15 deletions

13
loop/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM centos:7
RUN yum update -y
RUN yum install curl -y
RUN yum clean all
COPY docker-entrypoint.sh /
RUN chmod +x /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]