mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 00:45:19 +00:00
f507cdc078
This uses the new device client introduced in #5987 to perform requests from Fleet Desktop. Related to #5697
22 lines
418 B
Plaintext
22 lines
418 B
Plaintext
FROM --platform=linux/amd64 golang:1.17.8-bullseye
|
|
LABEL maintainer="Fleet Developers <hello@fleetdm.com>"
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
gcc \
|
|
libgtk-3-dev \
|
|
libayatana-appindicator3-dev \
|
|
&& 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 go.mod go.sum ./
|
|
|
|
CMD /bin/bash
|