Delete debian-10 folder

This commit is contained in:
Miguel A. Cabrera Minagorri 2021-03-25 08:38:53 +00:00
parent 5481e712db
commit d3e5bf695b
5 changed files with 0 additions and 64 deletions

View File

@ -1,24 +0,0 @@
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/wavefront-1.3.0-0-linux-amd64-debian-10.tar.gz && \
echo "98e2c65761d01cdeb420c2c606c65f58258c314ff360c996bc13a46143961ef1 /tmp/bitnami/pkg/cache/wavefront-1.3.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/wavefront-1.3.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/wavefront-1.3.0-0-linux-amd64-debian-10.tar.gz
RUN chmod g+rwX /opt/bitnami
ENV BITNAMI_APP_NAME="wavefront-kubernetes-collector" \
BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r32" \
PATH="/opt/bitnami/wavefront/bin:$PATH"
USER 1001
ENTRYPOINT [ "wavefront-collector" ]
CMD [ "--help" ]

View File

@ -1,4 +0,0 @@
version: '2'
services:
wavefront:
image: docker.io/bitnami/wavefront-kubernetes-collector:1-debian-10

View File

@ -1,9 +0,0 @@
{
"wavefront": {
"arch": "amd64",
"digest": "98e2c65761d01cdeb420c2c606c65f58258c314ff360c996bc13a46143961ef1",
"distro": "debian-10",
"type": "NAMI",
"version": "1.3.0-0"
}
}

View File

@ -1,3 +0,0 @@
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

@ -1,24 +0,0 @@
#!/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