Skip to content

Commit ef2a3c0

Browse files
committed
Update CLI versions in container
1 parent 81a7b1e commit ef2a3c0

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

oci/Dockerfile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#
22
#
33
# Image versions
4-
ARG BASE_BUILDER=python:3.11
5-
ARG BASE_IMAGE=python:3.11-slim
4+
ARG BASE_BUILDER=python:3.13
5+
ARG BASE_IMAGE=python:3.13-slim
66

77

88
#
@@ -26,10 +26,10 @@ FROM builder AS common-builder
2626
ARG TARGETARCH
2727

2828
# https://github.com/kubernetes/kubernetes/releases
29-
ARG KUBECTL_VERSION=v1.28.5
29+
ARG KUBECTL_VERSION=v1.31.3
3030

3131
# https://github.com/kubernetes-sigs/kustomize/releases
32-
ARG KUSTOMIZE_VERSION=v5.3.0
32+
ARG KUSTOMIZE_VERSION=v5.5.0
3333

3434
# https://www.terraform.io/downloads.html
3535
# 1.5.x is the last OSS Terraform
@@ -66,7 +66,7 @@ FROM builder AS aws-builder
6666
ARG TARGETARCH
6767

6868
# https://github.com/aws/aws-cli/blob/v2/CHANGELOG.rst
69-
ARG AWS_CLI_VERSION=2.15.8
69+
ARG AWS_CLI_VERSION=2.22.12
7070

7171
RUN mkdir -p /opt/aws/bin
7272

@@ -86,7 +86,7 @@ FROM builder AS gcp-builder
8686
ARG TARGETARCH
8787

8888
# https://cloud.google.com/sdk/docs/release-notes
89-
ARG GOOGLE_CLOUD_SDK_VERSION=458.0.1
89+
ARG GOOGLE_CLOUD_SDK_VERSION=502.0.0
9090

9191
RUN echo "GOOGLE_CLOUD_SDK_VERSION: ${GOOGLE_CLOUD_SDK_VERSION}" \
9292
&& arch=`echo ${TARGETARCH} | sed -e 's/amd64/x86_64/' -e 's/arm64/arm/'` \
@@ -104,7 +104,7 @@ RUN /opt/google/bin/gcloud components install gke-gcloud-auth-plugin
104104
FROM builder AS azure-builder
105105

106106
# https://docs.microsoft.com/en-us/cli/azure/release-notes-azure-cli?tabs=azure-cli
107-
ARG AZURE_CLI_VERSION=2.55.0
107+
ARG AZURE_CLI_VERSION=2.67.0
108108

109109
RUN apt-get update && apt-get install -y \
110110
libffi-dev
@@ -122,12 +122,12 @@ RUN echo "AZURE_CLI_VERSION: ${AZURE_CLI_VERSION}" \
122122
#
123123
#
124124
# KinD builder
125-
FROM builder as kind-builder
125+
FROM builder AS kind-builder
126126

127127
ARG TARGETARCH
128128

129129
# https://docs.docker.com/engine/release-notes/
130-
ARG DOCKER_CLI_VERSION=24.0.7
130+
ARG DOCKER_CLI_VERSION=27.3.1
131131

132132
RUN mkdir -p /opt/bin
133133

@@ -166,13 +166,13 @@ ENV PATH=/opt/bin:$PATH
166166
WORKDIR /infra
167167

168168
ENTRYPOINT ["/opt/bin/entrypoint"]
169-
CMD bash
169+
CMD ["bash"]
170170

171171

172172
#
173173
#
174174
# Build starters and provider cache
175-
FROM final-base as dist-helper-build
175+
FROM final-base AS dist-helper-build
176176

177177
COPY common /common
178178

@@ -218,7 +218,7 @@ RUN cd build_artifacts &&\
218218
#
219219
#
220220
# Dist artifacts
221-
FROM alpine as dist-helper
221+
FROM alpine AS dist-helper
222222

223223
COPY --from=dist-helper-build /quickstart/_dist /quickstart/_dist
224224

0 commit comments

Comments
 (0)