mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-01 10:12:02 +08:00
31 lines
755 B
Docker
31 lines
755 B
Docker
FROM golang:1.14-buster AS builder
|
|
ENV CGO_ENABLED=0
|
|
ENV GOOS=linux
|
|
ENV GOARCH=amd64
|
|
ENV GOPATH=/go
|
|
|
|
# Prepare and enter src directory
|
|
WORKDIR /go/src/github.com/signoz/signoz/pkg/query-service
|
|
|
|
# Cache dependencies
|
|
ADD go.mod .
|
|
ADD go.sum .
|
|
RUN go mod download -x
|
|
|
|
# Add the sources and proceed with build
|
|
ADD . .
|
|
RUN go build -o ./bin/query-service ./main.go
|
|
RUN chmod +x ./bin/query-service
|
|
|
|
# use a minimal alpine image
|
|
FROM alpine:3.7
|
|
# add ca-certificates in case you need them
|
|
RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/*
|
|
# set working directory
|
|
WORKDIR /root
|
|
# copy the binary from builder
|
|
COPY --from=builder /go/src/github.com/signoz/signoz/pkg/query-service/bin/query-service .
|
|
# run the binary
|
|
CMD ["./query-service"]
|
|
|