-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile
More file actions
28 lines (23 loc) · 693 Bytes
/
Copy pathDockerfile
File metadata and controls
28 lines (23 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Stage 1 (Build)
FROM golang:1.24.11-alpine AS builder
ARG VERSION
RUN apk add --update --no-cache git make mailcap
WORKDIR /app/
COPY go.mod go.sum /app/
RUN go mod download
COPY . /app/
RUN CGO_ENABLED=0 go build \
-ldflags="-s -w -X github.com/reviactyl/agent/system.Version=$VERSION" \
-v \
-trimpath \
-o agent \
agent.go
RUN echo "ID=\"distroless\"" > /etc/os-release
# Stage 2 (Final)
FROM gcr.io/distroless/static:latest
COPY --from=builder /etc/os-release /etc/os-release
COPY --from=builder /etc/mime.types /etc/mime.types
COPY --from=builder /app/agent /usr/bin/
ENTRYPOINT ["/usr/bin/agent"]
CMD ["--config", "/etc/reviactyl/config.yml"]
EXPOSE 8080 2022