File tree 2 files changed +25
-3
lines changed
2 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 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
2
21
3
22
ARG BUILD_DATE
4
23
ARG VCS_REF
5
24
ARG VERSION
6
25
7
- COPY php-fpm_exporter /
26
+ COPY --from=builder /workspace/ php-fpm_exporter .
8
27
9
28
EXPOSE 9253
10
29
ENTRYPOINT [ "/php-fpm_exporter" , "server" ]
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ help: ## List targets & descriptions
7
7
deps : # # Get dependencies
8
8
go get -d -v ./...
9
9
10
+ build : deps # # Build the binary
11
+ go build -a -o php-fpm_exporter main.go
12
+
10
13
test : # # Run tests
11
14
go test -short ./...
12
15
@@ -26,4 +29,4 @@ lint: ## Run linters
26
29
golangci-lint run
27
30
28
31
fmt : # # Fix formatting issues
29
- goimports -w .
32
+ goimports -w .
You can’t perform that action at this time.
0 commit comments