mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 00:45:19 +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
16 lines
276 B
Docker
16 lines
276 B
Docker
FROM alpine
|
|
LABEL maintainer="Fleet Developers"
|
|
|
|
RUN apk --update add ca-certificates
|
|
RUN apk --no-cache add jq
|
|
|
|
# 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"]
|