mirror of
https://github.com/fleetdm/fleet
synced 2026-04-30 01:47:23 +00:00
Merged into `main` in #39584. Also backports test changes based on `fleet-gitops` repo changes.
18 lines
456 B
Text
18 lines
456 B
Text
FROM --platform=linux/amd64 golang:1.25.7-bookworm@sha256:38342f3e7a504bf1efad858c18e771f84b66dc0b363add7a57c9a0bbb6cf7b12
|
|
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
|