mirror of
https://github.com/fleetdm/fleet
synced 2026-05-10 10:40:46 +00:00
* Orbit: Add Fleet Desktop support to Windows * Rename workflow, fix linux build * Do not compile systray on linux * nolint on unused * Fix lint properly * nolint both checkers * Fix monitor logic in desktopRunner * Fix interrupt and execute order
13 lines
250 B
Docker
13 lines
250 B
Docker
FROM alpine
|
|
LABEL maintainer="Fleet Developers <hello@fleetdm.com>"
|
|
|
|
RUN apk --update add ca-certificates
|
|
|
|
# Create fleet group and user
|
|
RUN addgroup -S fleet && adduser -S fleet -G fleet
|
|
|
|
USER fleet
|
|
|
|
COPY fleetctl /usr/bin/
|
|
|
|
ENTRYPOINT ["fleetctl"]
|