-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dapper build to download tooling for arm builds too
- Loading branch information
1 parent
dcf7581
commit 554d305
Showing
1 changed file
with
3 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,10 @@ RUN zypper -n rm container-suseconnect && \ | |
zypper -n install git curl docker gzip tar wget awk | ||
|
||
## install golangci | ||
RUN if [ "${ARCH}" == "amd64" ]; then \ | ||
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.52.0; \ | ||
fi | ||
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.52.0 | ||
## install controller-gen | ||
RUN if [ "${ARCH}" = "amd64" ]; then \ | ||
go install sigs.k8s.io/controller-tools/cmd/[email protected]; \ | ||
fi | ||
RUN go install sigs.k8s.io/controller-tools/cmd/[email protected] | ||
|
||
# install openapi-gen | ||
RUN go install k8s.io/code-generator/cmd/[email protected] | ||
|
||
|