File tree 2 files changed +24
-14
lines changed
2 files changed +24
-14
lines changed Original file line number Diff line number Diff line change
1
+ FROM golang:1.20-bullseye as builder
2
+ RUN go install go.opentelemetry.io/collector/cmd/builder@latest
3
+
4
+ WORKDIR /
5
+
6
+ COPY metricsasattributesprocessor ./metricsasattributesprocessor
7
+ COPY ocb.yaml ./ocb.yaml
8
+
9
+ RUN builder --config=ocb.yaml
10
+
11
+
1
12
FROM alpine:3.16 as certs
2
13
RUN apk --update add ca-certificates
3
14
15
+
4
16
FROM scratch
5
17
6
18
ARG USER_UID=10001
7
19
USER ${USER_UID}
8
20
9
21
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
10
- COPY --chmod=755 dist/otelcol-custom /otelcol-custom
22
+ COPY --from=builder / dist/otelcol-custom /otelcol-custom
11
23
EXPOSE 4317 4318
12
24
ENTRYPOINT ["/otelcol-custom" ]
13
- CMD ["--config" , "/etc/otel/config.yaml" ]
25
+ CMD ["--config" , "/etc/otel/config.yaml" ]
Original file line number Diff line number Diff line change 1
1
IMAGE_REPOSITORY ?= "otelcol-custom"
2
2
IMAGE_TAG ?= "latest"
3
3
4
- .PHONY : build
5
- build :
4
+ .PHONY : build-local
5
+ build-local :
6
6
builder --config=ocb.yaml
7
7
8
- .PHONY : build-and-push-dockerhub
9
- build-and-push-dockerhub : build
8
+ .PHONY : build
9
+ build :
10
10
docker build -t $(IMAGE_REPOSITORY ) :$(IMAGE_TAG ) .
11
- docker push $(IMAGE_REPOSITORY ) :$(IMAGE_TAG )
12
11
13
- # This is required to build a proper executable that can be included in a docker image for an arm64 architecture K8s cluster
14
- .PHONY : build-arm
15
- build-arm :
16
- env GOOS=linux GOARCH=arm64 builder --config=ocb.yaml
12
+ .PHONY : build-and-push
13
+ build-and-push : build
14
+ docker push $(IMAGE_REPOSITORY ) :$(IMAGE_TAG )
17
15
18
- .PHONY : build-arm- and-push-dockerhub
19
- build-arm- and-push-dockerhub : build-arm
20
- docker buildx build --push --platform linux/arm/v7 ,linux/arm64/v8 -t $(IMAGE_REPOSITORY ) :$(IMAGE_TAG ) .
16
+ .PHONY : build-and-push-multiarch
17
+ build-and-push-multiarch :
18
+ docker buildx build --push --platform linux/amd64 ,linux/arm64 -t $(IMAGE_REPOSITORY ) :$(IMAGE_TAG ) .
21
19
22
20
.PHONY : run
23
21
run :
You can’t perform that action at this time.
0 commit comments