Skip to content

feat(Dockerfile): upgrade deps image #625

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Dockerfile.deps
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM alpine:3.17 AS builder

ARG AWS_IAM_AUTH_VERSION=0.5.9
ARG AWS_IAM_AUTH_VERSION=0.6.14
ARG ODIC_LOGIN_VERSION=1.28.0
ARG KUBELOGIN_VERSION=0.0.14
ARG KUBECTL_VERSION=1.22.11
ARG HELM_VERSION=3.9.0
ARG KUBELOGIN_VERSION=0.1.0
ARG KUBECTL_VERSION=1.26.12
ARG HELM_VERSION=3.13.3
ARG TARGETOS
ARG TARGETARCH
ARG TARGETVARIANT
Expand Down Expand Up @@ -36,7 +36,7 @@ RUN curl -L \
RUN curl -L https://get.helm.sh/helm-v${HELM_VERSION}-${TARGETOS}-${TARGETARCH}.tar.gz -o helm.tar.gz && \
tar xvfz helm.tar.gz

FROM mcr.microsoft.com/azure-cli:2.48.1
FROM mcr.microsoft.com/azure-cli:2.56.0
RUN apk --no-cache add ca-certificates

WORKDIR /app/
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ release: # Builds a release

.PHONY: release-local
release-local: # Builds a relase locally
goreleaser --snapshot --skip-publish --rm-dist
goreleaser --snapshot --skip=publish --clean

##@ Test & CI

Expand Down