2.7.18-debian-11-r0 release

This commit is contained in:
Bitnami Bot
2022-06-06 11:12:53 +00:00
committed by Bitnami Containers
parent 0a9b976833
commit cf0f25674b
6 changed files with 75 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
{
"python": {
"arch": "amd64",
"digest": "9411d0fad772ff7c50bf3bb9f5d808d558d0c51a6891eab55415d0693bb31c93",
"distro": "debian-11",
"type": "NAMI",
"version": "2.7.18-0"
}
}

View File

@@ -0,0 +1,3 @@
Bitnami containers ship with software bundles. You can find the licenses under:
/opt/bitnami/nami/COPYING
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt

View File

@@ -0,0 +1,24 @@
#!/bin/sh
set -e
set -u
export DEBIAN_FRONTEND=noninteractive
n=0
max=2
until [ $n -gt $max ]; do
set +e
(
apt-get update -qq &&
apt-get install -y --no-install-recommends "$@"
)
CODE=$?
set -e
if [ $CODE -eq 0 ]; then
break
fi
if [ $n -eq $max ]; then
exit $CODE
fi
echo "apt failed, retrying"
n=$(($n + 1))
done
rm -r /var/lib/apt/lists /var/cache/apt/archives