fleet/tools/ci/docker/createrepo/Dockerfile
Victor Vrantchan fdb3c55562 add tools and scripts to generate apt and dpkg repositories (#1183)
the scripts in tools/pkgrepos can be used to update apt and yum repositories as well as create zip archives for a release. 

The dl.kolide.co repository is archived as a static bucket on GCP.
2017-02-16 11:47:10 -05:00

4 lines
104 B
Docker

FROM centos
RUN yum update -y && yum install -y createrepo
COPY update.sh /update.sh
CMD ["/update.sh"]