mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +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
14 lines
270 B
Docker
14 lines
270 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 fleet /usr/bin/
|
|
COPY fleetctl /usr/bin/
|
|
|
|
CMD ["fleet", "serve"]
|