mirror of
https://github.com/bitnami/containers.git
synced 2026-02-11 14:37:20 +08:00
[bitnami/istio-pilot] Release 1.14.3-debian-11-r0 (#4323)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
35
bitnami/istio-pilot/1.14/debian-11/Dockerfile
Normal file
35
bitnami/istio-pilot/1.14/debian-11/Dockerfile
Normal file
@@ -0,0 +1,35 @@
|
||||
FROM docker.io/bitnami/minideb:bullseye
|
||||
ENV HOME="/" \
|
||||
OS_ARCH="amd64" \
|
||||
OS_FLAVOUR="debian-11" \
|
||||
OS_NAME="linux"
|
||||
|
||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||
org.opencontainers.image.ref.name="1.14.3-debian-11-r0" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/istio-pilot" \
|
||||
org.opencontainers.image.title="istio-pilot" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="1.14.3"
|
||||
|
||||
COPY prebuildfs /
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl gzip procps tar
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f istio-pilot-1.14.3-1-linux-amd64-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/istio-pilot-1.14.3-1-linux-amd64-debian-11.tar.gz -O ; \
|
||||
fi && \
|
||||
echo "36cf26ef8ad9afefdd8dc54978923ab1acfc805c74d56ea293ab90404f52f40c istio-pilot-1.14.3-1-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf istio-pilot-1.14.3-1-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --wildcards '*/files' && \
|
||||
rm -rf istio-pilot-1.14.3-1-linux-amd64-debian-11.tar.gz
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
RUN chmod g+rwX /opt/bitnami
|
||||
|
||||
ENV APP_VERSION="1.14.3" \
|
||||
BITNAMI_APP_NAME="istio-pilot" \
|
||||
PATH="/opt/bitnami/istio/bin:$PATH"
|
||||
|
||||
USER 1001
|
||||
ENTRYPOINT [ "/opt/bitnami/istio/bin/pilot-discovery" ]
|
||||
4
bitnami/istio-pilot/1.14/debian-11/docker-compose.yml
Normal file
4
bitnami/istio-pilot/1.14/debian-11/docker-compose.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
version: '2'
|
||||
services:
|
||||
istio-pilot:
|
||||
image: docker.io/bitnami/istio-pilot:1.14
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"istio-pilot": {
|
||||
"arch": "amd64",
|
||||
"digest": "36cf26ef8ad9afefdd8dc54978923ab1acfc805c74d56ea293ab90404f52f40c",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.14.3-1"
|
||||
}
|
||||
}
|
||||
@@ -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/istio-pilot/1.14/debian-11/prebuildfs/usr/sbin/install_packages
Executable file
24
bitnami/istio-pilot/1.14/debian-11/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
|
||||
5
bitnami/istio-pilot/1.14/debian-11/tags-info.yaml
Normal file
5
bitnami/istio-pilot/1.14/debian-11/tags-info.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
rolling-tags:
|
||||
- "1.14"
|
||||
- "1.14-debian-11"
|
||||
- "1.14.3"
|
||||
- "latest"
|
||||
@@ -28,7 +28,7 @@ $ docker run --name Istio Pilot bitnami/Istio Pilot:latest
|
||||
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.14`, `1.14-debian-11`, `1.14.3`, `1.14.3-debian-11-r-1`, `latest` (1.14/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/istio-pilot/1.14/debian-11/Dockerfile)
|
||||
- [`1.14`, `1.14-debian-11`, `1.14.3`, `1.14.3-debian-11-r0`, `latest` (1.14/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/istio-pilot/1.14/debian-11/Dockerfile)
|
||||
- [`1.13`, `1.13-debian-11`, `1.13.7`, `1.13.7-debian-11-r0` (1.13/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/istio-pilot/1.13/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||
|
||||
4
bitnami/istio-pilot/docker-compose.yml
Normal file
4
bitnami/istio-pilot/docker-compose.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
version: '2'
|
||||
services:
|
||||
istio-pilot:
|
||||
image: docker.io/bitnami/istio-pilot:1.14
|
||||
Reference in New Issue
Block a user