Files
dockerimages/loop/Dockerfile
2021-03-28 03:56:28 +02:00

14 lines
180 B
Docker

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"]