Skip to content

Commit 257e12c

Browse files
authored
Merge pull request Dolibarr#111 from JonBendtsen/podman_build
2 parents c62e4d2 + f0737f4 commit 257e12c

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

update.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ set -e
88

99
DOCKER_BUILD=${DOCKER_BUILD:-0}
1010
DOCKER_PUSH=${DOCKER_PUSH:-0}
11+
PODMAN_BUILD=${PODMAN_BUILD:-0}
1112

1213
BASE_DIR="$( cd "$(dirname "$0")" && pwd )"
1314

@@ -99,6 +100,13 @@ for dolibarrVersion in "${DOLIBARR_VERSIONS[@]}"; do
99100
"${dir}"
100101
fi
101102
fi
103+
104+
if [ "${PODMAN_BUILD}" = "1" ]; then
105+
podman build \
106+
--compress \
107+
${buildOptionTags} \
108+
"${dir}"
109+
fi
102110
done
103111

104112
if [ "${dolibarrVersion}" = "develop" ]; then

0 commit comments

Comments
 (0)