mirror of
https://github.com/fleetdm/fleet
synced 2026-05-19 06:58:30 +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.
5 lines
184 B
Docker
5 lines
184 B
Docker
FROM ubuntu
|
|
RUN apt-key adv --keyserver keys.gnupg.net --recv-keys 9E3E53F19C7DE460 && \
|
|
apt-get update -y && apt-get install -y aptly
|
|
COPY update.sh /update.sh
|
|
CMD ["/update.sh"]
|