mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +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.
7 lines
186 B
Docker
7 lines
186 B
Docker
FROM ruby:2.3.3
|
|
RUN apt-get update && apt-get install -y rpm debsigs
|
|
RUN gem install --no-ri --no-rdoc fpm
|
|
COPY ./build.sh /build.sh
|
|
COPY ./rpmmacros /root/.rpmmacros
|
|
CMD ["/build.sh"]
|
|
|