Skip to content

Commit 581cda2

Browse files
committed
fix builds for multi arch
1 parent aea4424 commit 581cda2

File tree

2 files changed

+24
-14
lines changed

2 files changed

+24
-14
lines changed

Dockerfile

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
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+
112
FROM alpine:3.16 as certs
213
RUN apk --update add ca-certificates
314

15+
416
FROM scratch
517

618
ARG USER_UID=10001
719
USER ${USER_UID}
820

921
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
1123
EXPOSE 4317 4318
1224
ENTRYPOINT ["/otelcol-custom"]
13-
CMD ["--config", "/etc/otel/config.yaml"]
25+
CMD ["--config", "/etc/otel/config.yaml"]

Makefile

+10-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
IMAGE_REPOSITORY ?= "otelcol-custom"
22
IMAGE_TAG ?= "latest"
33

4-
.PHONY: build
5-
build:
4+
.PHONY: build-local
5+
build-local:
66
builder --config=ocb.yaml
77

8-
.PHONY: build-and-push-dockerhub
9-
build-and-push-dockerhub: build
8+
.PHONY: build
9+
build:
1010
docker build -t $(IMAGE_REPOSITORY):$(IMAGE_TAG) .
11-
docker push $(IMAGE_REPOSITORY):$(IMAGE_TAG)
1211

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)
1715

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) .
2119

2220
.PHONY: run
2321
run:

0 commit comments

Comments
 (0)