We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
arm64
1 parent 52d96af commit 316433eCopy full SHA for 316433e
CHANGES.md
@@ -16,6 +16,7 @@ Release Notes.
16
* Add `Tracing APIs` document into `Manual APIs`.
17
18
#### Bug Fixes
19
+* Fix Docker image not supporting the `arm64` platform.
20
21
#### Issues and PR
22
- All issues are [here](https://github.com/apache/skywalking/milestone/189?closed=1)
Dockerfile
@@ -22,9 +22,12 @@ ARG BASE_BUILDER_IMAGE='golang:1.18'
FROM ${BASE_BUILDER_IMAGE} as builder
23
# Go Agent Version
24
ARG VERSION
25
+# Current ARCH
26
+ARG TARGETARCH
27
+
28
WORKDIR /skywalking-go
29
COPY . .
-RUN VERSION=$VERSION make -C tools/go-agent linux
30
+RUN VERSION=$VERSION ARCH=$TARGETARCH make -C tools/go-agent linux
31
32
FROM ${BASE_GO_IMAGE}
33
0 commit comments