-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major versions bumps in Go, Alpine and Dapper (#169)
* Major versions bumps in Go, Alpine and Dapper * Downgrade Dapper ARM version * Bump klipper-helm image * plugins/<image>:latest is no longer published for ARM 32-bit Signed-off-by: Guilherme Macedo <[email protected]>
- Loading branch information
Showing
6 changed files
with
36 additions
and
27 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
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM golang:1.17-alpine3.16 | ||
FROM golang:1.19-alpine3.17 | ||
|
||
ARG DAPPER_HOST_ARCH | ||
ENV ARCH $DAPPER_HOST_ARCH | ||
|
||
RUN apk -U add bash git gcc musl-dev docker vim less file curl wget ca-certificates | ||
RUN GOPROXY=direct go get golang.org/x/tools/cmd/goimports@gopls/v0.8.2 | ||
RUN GOPROXY=direct go install golang.org/x/tools/cmd/goimports@gopls/v0.8.2 | ||
|
||
RUN if [ "${ARCH}" == "amd64" ]; then \ | ||
curl -sL https://raw.githubusercontent.com/golangci/golangci-lint/v1.45.2/install.sh | sh -s; \ | ||
go install sigs.k8s.io/kustomize/kustomize/[email protected].5; \ | ||
curl -sL https://raw.githubusercontent.com/golangci/golangci-lint/v1.50.1/install.sh | sh -s; \ | ||
go install sigs.k8s.io/kustomize/kustomize/[email protected].7; \ | ||
fi | ||
|
||
ENV DAPPER_ENV REPO TAG DRONE_TAG | ||
|
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
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
FROM alpine | ||
FROM alpine:3.17 | ||
COPY bin/helm-controller /usr/bin/ | ||
CMD ["helm-controller"] |
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