fleet/Dockerfile-desktop-linux
Ian Littman f2d50c6699 Update Debian container references from bookworm to trixie (#40349)
Resolves #39901.

If some of the following don't apply, delete the relevant line.

- [ ] QA'd all new/changed functionality manually
2026-03-05 16:50:03 -06:00

18 lines
454 B
Text

FROM --platform=linux/amd64 golang:1.25.7-trixie@sha256:dfdd969010ba978942302cee078235da13aef030d22841e873545001d68a61a7
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 server ./server
COPY ee ./ee
COPY pkg ./pkg
COPY ./third_party ./third_party
COPY go.mod go.sum ./
CMD /bin/bash