Skip to content

Commit 98d6cab

Browse files
committed
chore(imagebuilder): update to pack 0.21.0
1 parent a22b35f commit 98d6cab

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

rootfs/imagebuilder/build

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ function waiting_process {
1515
echo -e "\\033[32m---> Waiting $1 running.\\033[0m"
1616
for i in {0..4}; do
1717
pid=$(pgrep "$1")
18-
if [ ! -n "$pid" ] && [[ $i == 3 ]]; then
18+
if [ -z "$pid" ] && [[ $i == 3 ]]; then
1919
echo -e "\\033[31m---> Process $1 failed.\\033[0m"
2020
exit 1
21-
elif [ ! -n "$pid" ]; then
21+
elif [ -z "$pid" ]; then
2222
sleep 3
2323
else
2424
sleep 1
@@ -97,7 +97,7 @@ image_cache_repo="${registry}/${image_name}:latest"
9797
echo "---> Cache not found"
9898
}
9999
# Building
100-
export LIFECYCLE_IMAGE=docker.io/buildpacksio/lifecycle:8f801a5
100+
export LIFECYCLE_IMAGE=docker.io/buildpacksio/lifecycle:0.12.0-rc.1
101101
if [[ "${DRYCC_STACK}" == "container" ]] ; then
102102
echo "---> Building container"
103103
podman build -t "${image_cache_repo}" --network host .

0 commit comments

Comments
 (0)