1.1.0-debian-10-r96 release
This commit is contained in:
parent
ca8c6e1d33
commit
0aa6b464c3
|
|
@ -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/elasticsearch-exporter-1.1.0-0-linux-amd64-debian-10.tar.gz && \
|
||||
echo "8c3777e2fa27a93e167bb5770f6d536a360c480028c776a76511ffe8bbf4f3c1 /tmp/bitnami/pkg/cache/elasticsearch-exporter-1.1.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/elasticsearch-exporter-1.1.0-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="elasticsearch-exporter" \
|
||||
BITNAMI_IMAGE_VERSION="1.1.0-debian-10-r95" \
|
||||
BITNAMI_IMAGE_VERSION="1.1.0-debian-10-r96" \
|
||||
HOME="/" \
|
||||
OS_ARCH="amd64" \
|
||||
OS_FLAVOUR="debian-10" \
|
||||
OS_NAME="linux" \
|
||||
PATH="/opt/bitnami/elasticsearch-exporter/bin:$PATH"
|
||||
|
||||
EXPOSE 9114
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -32,7 +32,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/).
|
||||
|
||||
|
||||
* [`1-debian-10`, `1.1.0-debian-10-r95`, `1`, `1.1.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-elasticsearch-exporter/blob/1.1.0-debian-10-r95/1/debian-10/Dockerfile)
|
||||
* [`1-debian-10`, `1.1.0-debian-10-r96`, `1`, `1.1.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-elasticsearch-exporter/blob/1.1.0-debian-10-r96/1/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/elasticsearch-exporter GitHub repo](https://github.com/bitnami/bitnami-docker-elasticsearch-exporter).
|
||||
# Get this image
|
||||
|
|
|
|||
Loading…
Reference in New Issue