mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 16:08:47 +00:00
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.
4 lines
104 B
Docker
4 lines
104 B
Docker
FROM centos
|
|
RUN yum update -y && yum install -y createrepo
|
|
COPY update.sh /update.sh
|
|
CMD ["/update.sh"]
|