From 1531cc6888c118d6789e875aa428fbbc8d13c75e Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Thu, 13 Nov 2025 12:42:51 -0500 Subject: [PATCH] [DATALAD RUNCMD] Update bundled docker to 19.03.15 from old 17.09.0-ce That is needed so docker gains --gpus option and potentially something else more recent. We trusted chatgpt that 19.03 series introduced it and went for the most recent patch release in that series. Most recent docker is 29.0.0 but we did not want to jump too far ahead === Do not change lines below === { "chain": [], "cmd": "sed -i -e s,17.09.0-ce,19.03.15,g docker/Makefile", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ Signed-off-by: Yaroslav Halchenko --- docker/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Makefile b/docker/Makefile index e65294f7fe..6c0ce4e5b3 100644 --- a/docker/Makefile +++ b/docker/Makefile @@ -37,9 +37,9 @@ release: build dist/docker/amd64: mkdir -p dist/linux/amd64 - curl -fsSL https://download.docker.com/linux/static/stable/x86_64/docker-17.09.0-ce.tgz | tar --strip-components=1 -xvz -C dist/linux/amd64 + curl -fsSL https://download.docker.com/linux/static/stable/x86_64/docker-19.03.15.tgz | tar --strip-components=1 -xvz -C dist/linux/amd64 dist/docker/arm64: mkdir -p dist/linux/arm64 - curl -fsSL https://download.docker.com/linux/static/stable/aarch64/docker-17.09.0-ce.tgz | tar --strip-components=1 -xvz -C dist/linux/arm64 + curl -fsSL https://download.docker.com/linux/static/stable/aarch64/docker-19.03.15.tgz | tar --strip-components=1 -xvz -C dist/linux/arm64