fleet/tools/fleet-docker/Dockerfile
Andrew Baker ff969e8ddc
Drew bakerfdm remove email mentions (#8641)
* 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
2022-11-10 11:59:08 -05:00

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"]