ESL-devenv/DockerFile/Dockerfile.repo
2021-12-10 16:25:55 +01:00

16 lines
334 B
Docker

FROM centos:${CentOsVersion}
LABEL maintainer='Guillaume Astier Ruiz'
ENV os='centos'
ENV osversion='7'
RUN yum install yum-utils createrepo vim wget -y
RUN yum install epel-release -y
COPY ./bin/sync.sh /bin/sync.sh
RUN chmod 755 /bin/sync.sh
COPY ./bin/empty.sh /bin/empty.sh
RUN chmod 755 /bin/empty.sh
CMD [${Run} ${RunArg}]