fleet/tools/ci/docker/aptly/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

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"]