Skip to content

Commit de88bc2

Browse files
authored
chore: add build target to Makefile & builder to Dockerfile (#215)
1 parent 877a9ff commit de88bc2

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

Dockerfile

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,29 @@
1-
FROM alpine:3.15.0
1+
# Build the binary
2+
FROM docker.io/library/golang:1.18 as builder
3+
4+
WORKDIR /workspace
5+
# Copy the Go Modules manifests
6+
COPY go.mod go.mod
7+
COPY go.sum go.sum
8+
# cache deps before building and copying source so that we don't need to re-download as much
9+
# and so that source changes don't invalidate our downloaded layer
10+
RUN go mod download
11+
12+
# Copy the go source
13+
COPY main.go main.go
14+
COPY cmd/ cmd/
15+
COPY phpfpm/ phpfpm/
16+
17+
# Build
18+
RUN CGO_ENABLED=0 go build -a -o php-fpm_exporter main.go
19+
20+
FROM docker.io/library/alpine:3.15.0
221

322
ARG BUILD_DATE
423
ARG VCS_REF
524
ARG VERSION
625

7-
COPY php-fpm_exporter /
26+
COPY --from=builder /workspace/php-fpm_exporter .
827

928
EXPOSE 9253
1029
ENTRYPOINT [ "/php-fpm_exporter", "server" ]

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ help: ## List targets & descriptions
77
deps: ## Get dependencies
88
go get -d -v ./...
99

10+
build: deps ## Build the binary
11+
go build -a -o php-fpm_exporter main.go
12+
1013
test: ## Run tests
1114
go test -short ./...
1215

@@ -26,4 +29,4 @@ lint: ## Run linters
2629
golangci-lint run
2730

2831
fmt: ## Fix formatting issues
29-
goimports -w .
32+
goimports -w .

0 commit comments

Comments
 (0)