mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Useful while testing/developing #24385. In the future we can push some of these to Fleet's Docker Hub and include them in `fleetctl preview` to allow demoing of e.g. script execution on linux devices.
12 lines
239 B
Docker
12 lines
239 B
Docker
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"]
|