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.
10 lines
174 B
Docker
10 lines
174 B
Docker
FROM debian:12.8
|
|
|
|
COPY fleet-osquery_amd64.deb /
|
|
COPY run-fleetd.sh /
|
|
RUN chmod +x /run-fleetd.sh
|
|
|
|
RUN dpkg --install /fleet-osquery_amd64.deb
|
|
|
|
ENTRYPOINT ["/run-fleetd.sh"]
|