1
0
Fork 0

Force container creation in tools/kernel-factory/bootstrap.sh

timestamps
Andrey Konovalov 2018-11-16 18:27:57 +01:00
parent 3a6990458b
commit d77765748a
1 changed files with 3 additions and 2 deletions

View File

@ -1,9 +1,10 @@
#!/bin/sh
mkdir output
#!/bin/sh -eux
mkdir -p output
echo > output/kernels.toml
find | grep Docker | sed 's/Dockerfile//' | while read DOCKER; do
CONTAINER_NAME=$(echo $DOCKER | sed -e 's;/;;g' -e 's;\.;;g' -e 's;\(.*\);\L\1;')
docker build -t ${CONTAINER_NAME} ${DOCKER}
docker run ${CONTAINER_NAME} bash -c 'ls /boot'
CONTAINER_ID=$(docker ps -a | grep ${CONTAINER_NAME} | awk '{print $1}' | head -n 1)
docker cp ${CONTAINER_ID}:/boot/. output/
DISTRO_NAME=$(echo $DOCKER | cut -d '/' -f 2)