mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
a8f1bc0885
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>
14 lines
397 B
Docker
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"]
|