2.0.3-debian-10-r0 release

This commit is contained in:
Bitnami Bot
2021-06-16 21:13:31 +00:00
parent fe2810fec0
commit 08932c237d
7 changed files with 211 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
FROM docker.io/bitnami/minideb:buster
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV HOME="/" \
OS_ARCH="amd64" \
OS_FLAVOUR="debian-10" \
OS_NAME="linux"
COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages ca-certificates curl gzip procps tar wget
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/argo-cd-2.0.3-0-linux-amd64-debian-10.tar.gz && \
echo "7aabfc4eec886ef6c57535f2b284246dad795d2b45d35304b8260bf10a2eb0d4 /tmp/bitnami/pkg/cache/argo-cd-2.0.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/argo-cd-2.0.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/argo-cd-2.0.3-0-linux-amd64-debian-10.tar.gz
RUN useradd -r -u 1001 -g root argo-cd
ENV BITNAMI_APP_NAME="argo-cd" \
BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r0" \
PATH="/opt/bitnami/argo-cd/bin:$PATH"
USER 1001
ENTRYPOINT [ "/opt/bitnami/argo-cd/bin/argocd" ]

View File

@@ -0,0 +1,5 @@
version: '2'
services:
argo-cd:
image: docker.io/bitnami/argo-cd:2

View File

@@ -0,0 +1,9 @@
{
"argo-cd": {
"arch": "amd64",
"digest": "7aabfc4eec886ef6c57535f2b284246dad795d2b45d35304b8260bf10a2eb0d4",
"distro": "debian-10",
"type": "NAMI",
"version": "2.0.3-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