btrfs-progs/ci/images/ci-musl-i386/docker-build
David Sterba 337ef1141d btrfs-progs: ci: fix docker test entry point scripts
There was a bug when a branch contained a slash then the file with
downloaded sources was not found. Update all, all images have to be
rebuilt and pushed to docker hub so the changes are applied inside
github actions.

Signed-off-by: David Sterba <dsterba@suse.com>
2024-01-26 05:58:42 +01:00

12 lines
356 B
Bash
Executable File

#!/bin/sh
# Run from the directory with Dockerfile, directory name should match the image
# name
prefix=kdave
image=$(basename `pwd` | tr '[A-Z]' '[a-z]')
# Make sure the file exists as it's required but can be empty. In that case
# it's downloaded when ./test-build is executed
touch devel.tar.gz
docker build --platform linux/386 -t "$prefix/$image" .