Skip to content

Commit ca5d75c

Browse files
authored
Update dev image (#20681)
* Update dev image * Fix build * Do not update libseccomp
1 parent cad6e57 commit ca5d75c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

dev/image/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN mkdir -p /tmp/helm/ \
2222
&& helm completion bash > /usr/share/bash-completion/completions/helm
2323

2424
### kubectl ###
25-
RUN curl -fsSL -o /usr/bin/kubectl "https://dl.k8s.io/release/v1.28.9/bin/linux/amd64/kubectl" && chmod +x /usr/bin/kubectl \
25+
RUN curl -fsSL -o /usr/bin/kubectl "https://dl.k8s.io/release/v1.30.1/bin/linux/amd64/kubectl" && chmod +x /usr/bin/kubectl \
2626
&& kubectl completion bash > /usr/share/bash-completion/completions/kubectl
2727

2828
RUN curl -fsSL -o /usr/bin/kubectx https://raw.githubusercontent.com/ahmetb/kubectx/master/kubectx && chmod +x /usr/bin/kubectx \
@@ -42,16 +42,16 @@ RUN install-packages mysql-client
4242
RUN cd /usr/bin && curl -fsSL https://github.com/cert-manager/cert-manager/releases/download/v1.13.0/cmctl-linux-amd64.tar.gz | tar xzv --no-anchored cmctl
4343

4444
# gokart
45-
RUN cd /usr/bin && curl -fsSL https://github.com/praetorian-inc/gokart/releases/download/v0.4.0/gokart_0.4.0_linux_x86_64.tar.gz | tar xzv --no-anchored gokart
45+
RUN cd /usr/bin && curl -fsSL https://github.com/praetorian-inc/gokart/releases/download/v0.5.1/gokart_0.5.1_linux_x86_64.tar.gz | tar xzv --no-anchored gokart
4646

4747
# leeway
48-
ARG LEEWAY_VERSION=0.8.2
48+
ARG LEEWAY_VERSION=0.9.6
4949
ENV LEEWAY_MAX_PROVENANCE_BUNDLE_SIZE=8388608
5050
ENV LEEWAY_WORKSPACE_ROOT=/workspace/gitpod
5151
ENV LEEWAY_REMOTE_CACHE_BUCKET=leeway-cache-dev-3ac8ef5
5252
ENV LEEWAY_CACHE_DIR=/workspace/.leeway/cache
5353
ENV LEEWAY_BUILD_DIR=/workspace/.leeway/build
54-
RUN cd /usr/bin && curl -fsSL https://github.com/gitpod-io/leeway/releases/download/v${LEEWAY_VERSION}/leeway_${LEEWAY_VERSION}_Linux_x86_64.tar.gz | tar xz
54+
RUN cd /usr/bin && curl -fsSL https://github.com/gitpod-io/leeway/releases/download/v${LEEWAY_VERSION}/leeway_Linux_x86_64.tar.gz | tar xz
5555

5656
# evans (gRPC client)
5757
RUN cd /usr/bin && curl -fsSL https://github.com/ktr0731/evans/releases/download/v0.10.6/evans_linux_amd64.tar.gz | tar xz evans
@@ -139,7 +139,7 @@ ARG GCS_DIR=/opt/google-cloud-sdk
139139
ENV PATH=$GCS_DIR/bin:$PATH
140140
RUN sudo chown gitpod: /opt \
141141
&& mkdir $GCS_DIR \
142-
&& curl -fsSL https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-472.0.0-linux-x86_64.tar.gz \
142+
&& curl -fsSL https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-515.0.0-linux-x86_64.tar.gz \
143143
| tar -xzvC /opt \
144144
&& /opt/google-cloud-sdk/install.sh --quiet --usage-reporting=false --bash-completion=true \
145145
--additional-components gke-gcloud-auth-plugin docker-credential-gcr alpha beta \
@@ -166,7 +166,7 @@ ENV DB_HOST=127.0.0.1
166166
# awscliv2
167167
# See also: https://docs.aws.amazon.com/cli/latest/userguide/getting-started-version.html
168168
# See also: https://github.com/aws/aws-cli/blob/v2/CHANGELOG.rst
169-
RUN curl -L "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.7.25.zip" -o "awscliv2.zip" \
169+
RUN curl -L "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" \
170170
&& unzip awscliv2.zip \
171171
&& sudo ./aws/install \
172172
&& rm -f awscliv2.zip

0 commit comments

Comments
 (0)