mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
Fixes #30475 # Checklist for submitter - [x] Manual QA for all new/changed functionality <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Introduced support for HTTP message signing in agent-server communications, enhancing request authentication. * Added a configurable option to control the probability of agents using HTTP message signatures via a new command-line flag. * **Bug Fixes** * Improved error logging for issues encountered during HTTP signature key retrieval, providing better visibility into failures. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
16 lines
372 B
Text
16 lines
372 B
Text
FROM --platform=linux/amd64 golang:1.24.5-bullseye@sha256:254c0d1f13aad57bb210caa9e049deaee17ab7b8a976dba755cba1adf3fbe291
|
|
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
|