mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
Resolves #40396. No changes file because there should be no user visible changes. ## Testing - [x] QA'd all new/changed functionality manually ## fleetd/orbit/Fleet Desktop - [x] Verified compatibility with the latest released version of Fleet (see [Must rule](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/workflows/fleetd-development-and-release-strategy.md)) - [X] Verified that fleetd runs on macOS, Linux and Windows - [X] Verified auto-update works from the released version of component to the new version (see [tools/tuf/test](../tools/tuf/test/README.md))
19 lines
483 B
Text
19 lines
483 B
Text
FROM --platform=linux/amd64 golang:1.26.1-trixie@sha256:96b28783b99bcd265fbfe0b36a3ac6462416ce6bf1feac85d4c4ff533cbaa473
|
|
LABEL maintainer="Fleet Developers"
|
|
|
|
RUN apt-get update && apt-get install -y musl-tools && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN mkdir -p /usr/src/fleet
|
|
RUN mkdir -p /output
|
|
|
|
WORKDIR /usr/src/fleet
|
|
|
|
COPY orbit ./orbit
|
|
COPY ee/pkg ./ee/pkg
|
|
COPY server ./server
|
|
COPY client ./client
|
|
COPY pkg ./pkg
|
|
COPY ./third_party ./third_party
|
|
COPY go.mod go.sum ./
|
|
|
|
CMD /bin/bash
|