17 lines
356 B
Docker
17 lines
356 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}]
|
|
CMD ${Run} ${RunArg}
|