dvfs agent 0.1

This commit is contained in:
2026-04-26 12:38:53 +02:00
commit d0b12d668d
5 changed files with 232 additions and 0 deletions

11
agent/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM golang:1.25
WORKDIR /usr/src/agent
COPY go.mod ./
RUN go mod download
COPY . .
RUN go build -v -o /usr/local/bin/agent ./...
CMD ["app"]