First commit
This commit is contained in:
commit
abcf3fdf2a
4 changed files with 220 additions and 0 deletions
11
docker/entrypoint.sh
Executable file
11
docker/entrypoint.sh
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue