fleet/Dockerfile-desktop-linux

17 lines
372 B
Text
Raw Normal View History

2025-09-11 23:31:39 +00:00
FROM --platform=linux/amd64 golang:1.25.1-bookworm@sha256:c4bc0741e3c79c0e2d47ca2505a06f5f2a44682ada94e1dba251a3854e60c2bd
LABEL maintainer="Fleet Developers"
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