fleet/Dockerfile
dependabot[bot] a8f1bc0885
Bump alpine from 3.17.3 to 3.18.2 (#12367)
Bumps alpine from 3.17.3 to 3.18.2.

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-06-23 12:33:29 -07:00

14 lines
397 B
Docker

FROM alpine:3.18.2@sha256:82d1e9d7ed48a7523bdebc18cf6290bdb97b82302a8a9c27d4fe885949ea94d1
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"]