3.8.13-debian-11-r0 release

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

View File

@@ -0,0 +1,9 @@
{
"python": {
"arch": "amd64",
"digest": "79af9dcbaa89c4047d2d24b4a4c2ae17b771fe94972734379b9e50ef3dec3442",
"distro": "debian-11",
"type": "NAMI",
"version": "3.8.13-1"
}
}

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