mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
c82c580716
* 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
312 B
Docker
13 lines
312 B
Docker
FROM alpine
|
|
LABEL maintainer="Fleet Developers <hello@fleetdm.com>"
|
|
|
|
RUN apk --update add ca-certificates
|
|
|
|
# Create FleetDM group and user
|
|
RUN addgroup -S fleet && adduser -S fleet -G fleet
|
|
|
|
COPY ./build/binary-bundle/linux/fleet ./build/binary-bundle/linux/fleetctl /usr/bin/
|
|
|
|
USER fleet
|
|
CMD ["fleet", "serve"]
|