File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,8 @@ spec:
108
108
- default :
109
109
- linux/x86_64
110
110
- linux/arm64
111
+ - linux/ppc64le
112
+ - linux/s390x
111
113
description : List of platforms to build the container images on. The available
112
114
set of values is determined by the configuration of the multi-platform-controller.
113
115
name : build-platforms
Original file line number Diff line number Diff line change @@ -105,6 +105,8 @@ spec:
105
105
- default :
106
106
- linux/x86_64
107
107
- linux/arm64
108
+ - linux/ppc64le
109
+ - linux/s390x
108
110
description : List of platforms to build the container images on. The available
109
111
set of values is determined by the configuration of the multi-platform-controller.
110
112
name : build-platforms
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ ENV S2I_GIT_VERSION="1.4.0" \
6
6
7
7
COPY . .
8
8
9
- RUN CGO_ENABLED=0 go build -a -ldflags="-s -w" -o /tmp/s2i ./cmd/s2i
9
+ RUN CGO_ENABLED=0 GO111MODULE=on go build -a -mod=vendor -ldflags="-s -w" -o /tmp/s2i ./cmd/s2i
10
10
11
11
#
12
12
# Runner Image
@@ -25,7 +25,6 @@ LABEL \
25
25
description="Source-to-Image is a builder image" \
26
26
summary="Source-to-Image is a builder image" \
27
27
version="1.4.0" \
28
- architecture="${GOARCH}" \
29
28
vendor="Red Hat, Inc." \
30
29
com.redhat.component="source-to-image-container" \
31
30
You can’t perform that action at this time.
0 commit comments