Skip to content

Commit 12cdf27

Browse files
committed
Upgrade base image and cloud provider tools
1 parent a918874 commit 12cdf27

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.17
1+
FROM alpine:3.18
22

33
RUN set -x \
44
&& apk add --update bash findutils mariadb-client gzip bzip2 lz4 xz unzip zip coreutils python3 rsync curl \
@@ -7,8 +7,8 @@ RUN set -x \
77

88
# Install Gcloud SDK (required for gsutil workload identity authentication)
99
ENV \
10-
GCLOUD_VERSION=424.0.0 \
11-
GCLOUD_CHECKSUM=1fed39626f23352e0f97623d5009ff1bb6c4ffd3875c85f4205f309292696b18
10+
GCLOUD_VERSION=432.0.0 \
11+
GCLOUD_CHECKSUM=b24ba27d57463e08db859b7941cf4d7c33cb3af5865095639e3e0b2055cbec66
1212

1313
RUN set -x \
1414
&& apk --no-cache add python3 \
@@ -27,8 +27,8 @@ ENV \
2727
PYTHONIOENCODING=UTF-8 \
2828
PYTHONUNBUFFERED=0 \
2929
PAGER=more \
30-
AWS_CLI_VERSION=1.27.103 \
31-
AWS_CLI_CHECKSUM=0fed454146160807e273c4fd9bb1d0ba0926e3fb8ed3fc55e9251ebd2d53407c
30+
AWS_CLI_VERSION=1.27.141 \
31+
AWS_CLI_CHECKSUM=6fd0b48812f8093b9328600ac86c453d8fce30408456dc78603c18404795e16a
3232

3333
RUN set -x \
3434
&& apk --update add --no-cache ca-certificates wget unzip \

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ test-local: ## Run tests (local)
1919
_ci_test:
2020
true
2121

22+
shell: ## Run shell
23+
docker run --rm -t -i --entrypoint /bin/bash $(IMAGE_NAME):$(TAG)
24+
2225
clean: ## Remove built image
2326
docker rmi $(IMAGE_NAME):$(TAG)
2427

0 commit comments

Comments
 (0)