Skip to content

Commit

Permalink
Merge pull request #19 from centos-workstation/add-network-bib
Browse files Browse the repository at this point in the history
BIB needs internet access to make iso's
  • Loading branch information
hanthor authored Dec 20, 2024
2 parents b90f254 + 1ed2524 commit 634e253
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,10 @@ _build-bib $target_image $tag $type $config: (_rootful_load_image target_image t
mkdir -p "output"

echo "Cleaning up previous build"

if [[ $type == iso ]]; then
sudo rm -rf "output/bootiso" || true
sudo rm -rf "output/bootiso" || true
else
sudo rm -rf "output/${type}" || true
sudo rm -rf "output/${type}" || true
fi

args="--type ${type}"
Expand All @@ -155,6 +154,7 @@ _build-bib $target_image $tag $type $config: (_rootful_load_image target_image t
-it \
--privileged \
--pull=newer \
--net=host \
--security-opt label=type:unconfined_t \
-v $(pwd)/${config} \
-v $(pwd)/output:/output \
Expand Down

0 comments on commit 634e253

Please sign in to comment.