0.3.0-debian-10-r103 release
This commit is contained in:
parent
452a8fadb6
commit
9ae81e3f0f
|
|
@ -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/configmap-reload-0.3.0-0-linux-amd64-debian-10.tar.gz && \
|
||||
echo "545bc2559b08e28c4741ea8ea5fb8445d8be58a28f395beb00f6800706a54965 /tmp/bitnami/pkg/cache/configmap-reload-0.3.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/configmap-reload-0.3.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
|
|
@ -12,7 +13,11 @@ RUN apt-get update && apt-get upgrade -y && \
|
|||
RUN ln -sf /opt/bitnami/configmap-reload/bin/configmap-reload /bin/configmap-reload
|
||||
|
||||
ENV BITNAMI_APP_NAME="configmap-reload" \
|
||||
BITNAMI_IMAGE_VERSION="0.3.0-debian-10-r102" \
|
||||
BITNAMI_IMAGE_VERSION="0.3.0-debian-10-r103" \
|
||||
HOME="/" \
|
||||
OS_ARCH="amd64" \
|
||||
OS_FLAVOUR="debian-10" \
|
||||
OS_NAME="linux" \
|
||||
PATH="/opt/bitnami/configmap-reload/bin:$PATH"
|
||||
|
||||
EXPOSE 8080
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
version: '2'
|
||||
services:
|
||||
configmap-reload:
|
||||
image: bitnami/configmap-reload:0
|
||||
image: docker.io/bitnami/configmap-reload:0-debian-10
|
||||
ports:
|
||||
- 8080:8080
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -30,7 +30,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.3.0-debian-10-r102`, `0`, `0.3.0`, `latest` (0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-configmap-reload/blob/0.3.0-debian-10-r102/0/debian-10/Dockerfile)
|
||||
* [`0-debian-10`, `0.3.0-debian-10-r103`, `0`, `0.3.0`, `latest` (0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-configmap-reload/blob/0.3.0-debian-10-r103/0/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/configmap-reload GitHub repo](https://github.com/bitnami/bitnami-docker-configmap-reload).
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
version: '2'
|
||||
services:
|
||||
configmap-reload:
|
||||
image: bitnami/configmap-reload:0
|
||||
image: docker.io/bitnami/configmap-reload:0-debian-10
|
||||
ports:
|
||||
- 8080:8080
|
||||
|
|
|
|||
Loading…
Reference in New Issue