btrfs-progs/ci/images/images-base-update
Yaroslav Halchenko 16a7cbca91 btrfs-progs: run codespell throughout fixing typos automagically
Spell checking can now run in automated mode.

=== Do not change lines below ===
{
 "chain": [],
 "cmd": "codespell -w",
 "exit": 0,
 "extra_inputs": [],
 "inputs": [],
 "outputs": [],
 "pwd": "."
}
^^^ Do not change lines above ^^^

Author: Yaroslav Halchenko <debian@onerussian.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2024-07-30 19:56:08 +02:00

11 lines
199 B
Bash
Executable File

#!/bin/sh
# Update all base images from Dockerfile
# Run before: images-build-all
for dir in ci-*; do
echo "Update $dir"
cd "$dir"
docker pull `awk '/^FROM/ {print $2}' < Dockerfile`
cd ..
done