1.2.0-debian-10-r67 release

This commit is contained in:
Bitnami Bot
2020-05-13 13:47:22 +00:00
parent 06a515e150
commit e45f31874f
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/pushgateway-1.2.0-0-linux-amd64-debian-10.tar.gz && \
echo "6e6ed3867473cbecda9e6c7a6792503a8d9c1e0ec2fdef66511f9f95e7a98a2b /tmp/bitnami/pkg/cache/pushgateway-1.2.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/pushgateway-1.2.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="pushgateway" \
BITNAMI_IMAGE_VERSION="1.2.0-debian-10-r66" \
BITNAMI_IMAGE_VERSION="1.2.0-debian-10-r67" \
HOME="/" \
OS_ARCH="amd64" \
OS_FLAVOUR="debian-10" \
OS_NAME="linux" \
PATH="/opt/bitnami/pushgateway/bin:$PATH"
EXPOSE 9091

View File

@@ -2,4 +2,4 @@ version: '2'
services:
pushgateway:
image: bitnami/pushgateway:1
image: docker.io/bitnami/pushgateway:1-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

@@ -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.2.0-debian-10-r66`, `1`, `1.2.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-pushgateway/blob/1.2.0-debian-10-r66/1/debian-10/Dockerfile)
* [`1-debian-10`, `1.2.0-debian-10-r67`, `1`, `1.2.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-pushgateway/blob/1.2.0-debian-10-r67/1/debian-10/Dockerfile)
* [`0-debian-10`, `0.10.0-debian-10-r110`, `0`, `0.10.0` (0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-pushgateway/blob/0.10.0-debian-10-r110/0/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/pushgateway GitHub repo](https://github.com/bitnami/bitnami-docker-pushgateway).

View File

@@ -2,4 +2,4 @@ version: '2'
services:
pushgateway:
image: bitnami/pushgateway:1
image: docker.io/bitnami/pushgateway:1-debian-10