Skip to content

Commit

Permalink
Merge pull request #9180 from fidencio/topic/actually-add-the-pause-i…
Browse files Browse the repository at this point in the history
…mage-into-the-rootfs

rootfs: Fix PAUSE_IMAGE_TARBALL addition to the rootfs
  • Loading branch information
gkurz committed Feb 29, 2024
2 parents c01ba58 + 0022474 commit 58bc026
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/osbuilder/rootfs-builder/rootfs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,11 @@ build_rootfs_distro()
engine_run_args+=" -v $(dirname ${COCO_GUEST_COMPONENTS_TARBALL}):$(dirname ${COCO_GUEST_COMPONENTS_TARBALL})"
fi

if [ -n "${PAUSE_IMAGE_TARBALL}" ]; then
engine_run_args+=" --env PAUSE_IMAGE_TARBALL=${PAUSE_IMAGE_TARBALL}"
engine_run_args+=" -v $(dirname ${PAUSE_IMAGE_TARBALL}):$(dirname ${PAUSE_IMAGE_TARBALL})"
fi

engine_run_args+=" -v ${GOPATH_LOCAL}:${GOPATH_LOCAL} --env GOPATH=${GOPATH_LOCAL}"

engine_run_args+=" $(docker_extra_args $distro)"
Expand Down

0 comments on commit 58bc026

Please sign in to comment.