0.14.3-debian-10-r6 release

This commit is contained in:
Bitnami Bot
2020-05-05 20:19:17 +00:00
parent 2fb09dafbe
commit accd2b1525
5 changed files with 34 additions and 5 deletions

View File

@@ -1,8 +1,9 @@
FROM docker.io/bitnami/minideb:buster
LABEL maintainer "Bitnami <containers@bitnami.com>"
COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages ca-certificates curl procps sudo unzip wget
RUN install_packages ca-certificates curl gzip procps tar wget
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/cert-manager-0.14.3-0-linux-amd64-debian-10.tar.gz && \
echo "49727a90f683e63952ba72de16d0c59e683df52f7f9b09efa4a04ccc8c028bd7 /tmp/bitnami/pkg/cache/cert-manager-0.14.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/cert-manager-0.14.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
@@ -11,7 +12,11 @@ RUN apt-get update && apt-get upgrade -y && \
rm -r /var/lib/apt/lists /var/cache/apt/archives
ENV BITNAMI_APP_NAME="cert-manager" \
BITNAMI_IMAGE_VERSION="0.14.3-debian-10-r5" \
BITNAMI_IMAGE_VERSION="0.14.3-debian-10-r6" \
HOME="/" \
OS_ARCH="amd64" \
OS_FLAVOUR="debian-10" \
OS_NAME="linux" \
PATH="/opt/bitnami/cert-manager/bin:$PATH"
WORKDIR /opt/bitnami/cert-manager

View File

@@ -2,4 +2,4 @@ version: '2'
services:
cert-manager:
image: bitnami/cert-manager:0
image: docker.io/bitnami/cert-manager:0-debian-10

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

View File

@@ -33,7 +33,7 @@ Non-root container images add an extra layer of security and are generally recom
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
* [`0-debian-10`, `0.14.3-debian-10-r5`, `0`, `0.14.3`, `latest` (0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-cert-manager/blob/0.14.3-debian-10-r5/0/debian-10/Dockerfile)
* [`0-debian-10`, `0.14.3-debian-10-r6`, `0`, `0.14.3`, `latest` (0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-cert-manager/blob/0.14.3-debian-10-r6/0/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/cert-manager GitHub repo](https://github.com/bitnami/bitnami-docker-cert-manager).

View File

@@ -2,4 +2,4 @@ version: '2'
services:
cert-manager:
image: bitnami/cert-manager:0
image: docker.io/bitnami/cert-manager:0-debian-10