mirror of
https://github.com/bitnami/containers.git
synced 2026-02-25 07:17:40 +08:00
1.5.0-debian-10-r3 release
This commit is contained in:
@@ -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 libc6 procps sudo unzip wget
|
||||
RUN install_packages ca-certificates curl gzip libc6 procps tar wget
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/contour-1.5.0-0-linux-amd64-debian-10.tar.gz && \
|
||||
echo "d35dcb4cc5774d3fc179d9cfa3c79263dcacf6e5de7a9767be66dddcc5434095 /tmp/bitnami/pkg/cache/contour-1.5.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/contour-1.5.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="contour" \
|
||||
BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r2" \
|
||||
BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r3" \
|
||||
HOME="/" \
|
||||
OS_ARCH="amd64" \
|
||||
OS_FLAVOUR="debian-10" \
|
||||
OS_NAME="linux" \
|
||||
PATH="/opt/bitnami/contour/bin:$PATH"
|
||||
|
||||
USER 1001
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
contour:
|
||||
image: bitnami/contour:1
|
||||
image: docker.io/bitnami/contour:1-debian-10
|
||||
volumes:
|
||||
- contour_data:/bitnami/contour
|
||||
volumes:
|
||||
|
||||
@@ -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
|
||||
24
bitnami/contour/1/debian-10/prebuildfs/usr/sbin/install_packages
Executable file
24
bitnami/contour/1/debian-10/prebuildfs/usr/sbin/install_packages
Executable 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
|
||||
@@ -37,7 +37,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/containers/how-to/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`1-debian-10`, `1.5.0-debian-10-r2`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-contour/blob/1.5.0-debian-10-r2/1/debian-10/Dockerfile)
|
||||
* [`1-debian-10`, `1.5.0-debian-10-r3`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-contour/blob/1.5.0-debian-10-r3/1/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/contour GitHub repo](https://github.com/bitnami/bitnami-docker-contour).
|
||||
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
contour:
|
||||
image: bitnami/contour:1
|
||||
image: docker.io/bitnami/contour:1-debian-10
|
||||
volumes:
|
||||
- contour_data:/bitnami/contour
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user