aboutsummaryrefslogtreecommitdiff
path: root/telemetry/server/Dockerfile
blob: 27fc3e86d29aa2f66a6804538dd9a7fff831cfc5 (plain)
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
29
30
FROM golang:1.25-alpine AS builder

WORKDIR /app

COPY go.mod go.sum ./
COPY telemetry/server/go.mod telemetry/server/go.sum ./telemetry/server/
COPY telemetry/proto/ ./telemetry/proto/

WORKDIR /app/telemetry/server
RUN go mod download

WORKDIR /app
COPY . .

WORKDIR /app/telemetry/server
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o telemetry-server .

FROM alpine:latest
RUN apk --no-cache add ca-certificates \
    && addgroup -S appgroup \
    && adduser -S appuser -G appgroup

WORKDIR /home/appuser/
COPY --from=builder /app/telemetry/server/telemetry-server .

EXPOSE 8080

USER appuser

CMD ["./telemetry-server"]