mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
13 lines
239 B
Text
13 lines
239 B
Text
|
|
FROM amazonlinux:2023
|
||
|
|
|
||
|
|
COPY fleet-osquery_amd64.rpm /
|
||
|
|
COPY run-fleetd.sh /
|
||
|
|
RUN chmod +x /run-fleetd.sh
|
||
|
|
|
||
|
|
# For xargs
|
||
|
|
RUN dnf install --assumeyes findutils
|
||
|
|
|
||
|
|
RUN dnf install --assumeyes /fleet-osquery_amd64.rpm
|
||
|
|
|
||
|
|
ENTRYPOINT ["/run-fleetd.sh"]
|