18 lines
351 B
Docker
18 lines
351 B
Docker
FROM golang:1.24-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
COPY . .
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -o exporter ./cmd/exporter
|
|
|
|
FROM alpine:latest
|
|
RUN apk --no-cache add ca-certificates
|
|
WORKDIR /root/
|
|
|
|
COPY --from=builder /app/exporter .
|
|
COPY --from=builder /app/configs ./configs
|
|
|
|
EXPOSE 9090
|
|
CMD ["./exporter"] |