fleet/tools/fleetd-linux/fedora-41/Dockerfile
Lucas Manuel Rodriguez 2781193cdd
Added fleetd docker images to test/develop linux fleetd features (#25027)
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.
2024-12-27 16:16:39 -03:00

9 lines
181 B
Docker

FROM fedora:41
COPY fleet-osquery_amd64.rpm /
COPY run-fleetd.sh /
RUN chmod +x /run-fleetd.sh
RUN dnf install --assumeyes /fleet-osquery_amd64.rpm
ENTRYPOINT ["/run-fleetd.sh"]