Skip to content

Commit d7c37e0

Browse files
Update dind-images
1 parent e085d1a commit d7c37e0

18 files changed

Lines changed: 32 additions & 32 deletions

File tree

Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ lint-scripts:
131131
earthly-script-no-stdout:
132132
# This validates the ./earthly script doesn't print anything to stdout (it should print to stderr)
133133
# This is to ensure commands such as: MYSECRET="$(./earthly secrets get -n /user/my-secret)" work
134-
FROM earthly/dind:alpine-3.19-docker-25.0.2-r0
134+
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
135135
RUN apk add --no-cache --update bash
136136
COPY earthly .earthly_version_flag_overrides .
137137

ast/tests/with-docker.ast.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"command": {
55
"args": [
6-
"earthly/dind:alpine-3.19-docker-25.0.2-r0"
6+
"earthly/dind:alpine-3.19-docker-25.0.3-r2"
77
],
88
"name": "FROM"
99
}
@@ -813,7 +813,7 @@
813813
{
814814
"command": {
815815
"args": [
816-
"earthly/dind:alpine-3.19-docker-25.0.2-r0"
816+
"earthly/dind:alpine-3.19-docker-25.0.3-r2"
817817
],
818818
"name": "FROM"
819819
}
@@ -872,7 +872,7 @@
872872
{
873873
"command": {
874874
"args": [
875-
"earthly/dind:alpine-3.19-docker-25.0.2-r0"
875+
"earthly/dind:alpine-3.19-docker-25.0.3-r2"
876876
],
877877
"name": "FROM"
878878
}
@@ -930,8 +930,8 @@
930930
"command": {
931931
"args": [
932932
"+cgroup-v2-test",
933-
"--DIND_IMG=earthly/dind:alpine-3.19-docker-25.0.2-r0",
934-
"--DIND_IMG=earthly/dind:ubuntu-23.04-docker-24.0.5-1"
933+
"--DIND_IMG=earthly/dind:alpine-3.19-docker-25.0.3-r2",
934+
"--DIND_IMG=earthly/dind:ubuntu-23.04-docker-24.0.9-1"
935935
],
936936
"name": "BUILD"
937937
}

earthfile2llb/with_docker_run_base.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const (
2020
dockerdWrapperPath = "/var/earthly/dockerd-wrapper.sh"
2121
dockerAutoInstallScriptPath = "/var/earthly/docker-auto-install.sh"
2222
composeConfigFile = "compose-config.yml"
23-
suggestedDINDImage = "earthly/dind:alpine-3.18-docker-24.0.2-r0"
23+
suggestedDINDImage = "earthly/dind:alpine-3.19-docker-25.0.3-r2"
2424
)
2525

2626
// DockerLoadOpt holds parameters for WITH DOCKER --load parameter.

inputgraph/testdata/with-docker/Earthfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,28 @@ load-target:
99
SAVE IMAGE saved:latest
1010

1111
with-docker-load:
12-
FROM earthly/dind:alpine-3.19-docker-25.0.2-r0
12+
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
1313
WITH DOCKER --load saved:latest=+load-target
1414
RUN echo "loaded"
1515
END
1616

1717
with-docker-load-no-alias:
1818
BUILD +load-target
19-
FROM earthly/dind:alpine-3.19-docker-25.0.2-r0
19+
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
2020
WITH DOCKER --load +load-target
2121
RUN echo "loaded"
2222
END
2323

2424
with-docker-load-args:
2525
BUILD +load-target
26-
FROM earthly/dind:alpine-3.19-docker-25.0.2-r0
26+
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
2727
WITH DOCKER --load foo=(+load-target --foo=2)
2828
RUN echo "loaded"
2929
END
3030

3131
with-docker-load-remote:
3232
BUILD +load-target
33-
FROM earthly/dind:alpine-3.19-docker-25.0.2-r0
33+
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
3434
WITH DOCKER --load foo=github.com/earthly/earthly:6610b73131f94cbe594dba3b90665748f21a9b8d+license
3535
RUN echo "loaded"
3636
END

scripts/tests/interactive-debugger/docker-compose/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VERSION 0.7
2-
FROM earthly/dind:alpine-3.19-docker-25.0.2-r0
2+
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
33

44
fail-with-docker-compose:
55
WORKDIR /test

tests/cloud-push-pull/amazon-elastic-container-registry.earth

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VERSION 0.8
2-
FROM earthly/dind:alpine-3.19-docker-25.0.2-r0
2+
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
33

44
push:
55
ARG ACCT_ID

tests/cloud-push-pull/azure-container-registry.earth

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VERSION 0.8
2-
FROM earthly/dind:alpine-3.19-docker-25.0.2-r0
2+
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
33

44
push:
55
RUN date | md5sum | head -c 32 > motd

tests/cloud-push-pull/google-artifact-repository.earth

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VERSION 0.8
2-
FROM earthly/dind:alpine-3.19-docker-25.0.2-r0
2+
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
33

44
push:
55
RUN date | md5sum | head -c 32 > motd

tests/cloud-push-pull/google-container-registry.earth

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VERSION 0.8
2-
FROM earthly/dind:alpine-3.19-docker-25.0.2-r0
2+
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
33

44
push:
55
RUN date | md5sum | head -c 32 > motd

tests/ssh.earth

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ test:
77
RUN --ssh test -n "$SSH_AUTH_SOCK" && ssh-add -l | grep 'rsa-key-from-earthly-tests'
88

99
test-with-docker:
10-
FROM earthly/dind:alpine-3.16-docker-20.10.20-r0
10+
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
1111
RUN apk --update add openssh-client
1212
WITH DOCKER
1313
RUN --ssh test -n "$SSH_AUTH_SOCK" && ssh-add -l | grep 'rsa-key-from-earthly-tests'

0 commit comments

Comments
 (0)