First commit

This commit is contained in:
Yorick Barbanneau 2021-07-22 19:59:00 +02:00
commit abcf3fdf2a
4 changed files with 220 additions and 0 deletions

11
docker/entrypoint.sh Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
[[ -z $RECIPE ]] && RECIPE="default"
[[ -z $KERNEL ]] && KERNEL="5.11"
[[ -z $OUTPUT ]] && OUTPUT="/output"
[[ -z $REPO ]] && REPO="/output"
if ! ./make_image.sh -r $RECIPE -k $KERNEL -o $OUTPUT --repository $REPO
then
printf "Error when create userland\n"
fi