mirror of
https://github.com/fleetdm/fleet
synced 2026-05-05 06:18:25 +00:00
10 lines
187 B
Text
10 lines
187 B
Text
|
|
FROM redhat/ubi9:9.5
|
||
|
|
|
||
|
|
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"]
|