mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
ff969e8ddc
* Remove email address for redudancy Call to actions at the bottom of the page offer better forms of communication to join the community, trial Fleet, or ask questions. * Remove email mention * Remove email mention * Remove email mention
14 lines
318 B
Docker
14 lines
318 B
Docker
FROM alpine
|
|
LABEL maintainer="Fleet Developers"
|
|
|
|
RUN apk --update add ca-certificates
|
|
RUN apk --no-cache add jq
|
|
|
|
# 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"]
|