mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
6 lines
184 B
Text
6 lines
184 B
Text
|
|
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"]
|