mirror of
https://github.com/bitnami/containers.git
synced 2026-03-27 15:27:48 +08:00
0.12.0-debian-11-r0 release
This commit is contained in:
committed by
Bitnami Containers
parent
e7e9c01f46
commit
da5ece93de
28
bitnami/external-dns/0/debian-11/Dockerfile
Normal file
28
bitnami/external-dns/0/debian-11/Dockerfile
Normal file
@@ -0,0 +1,28 @@
|
||||
FROM docker.io/bitnami/minideb:bullseye
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
ENV HOME="/" \
|
||||
OS_ARCH="amd64" \
|
||||
OS_FLAVOUR="debian-11" \
|
||||
OS_NAME="linux"
|
||||
|
||||
COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl gzip procps tar wget
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/external-dns-0.12.0-0-linux-amd64-debian-11.tar.gz && \
|
||||
echo "340b59b973f23d00cb987b093378b1d3403fb572a727b2ea4f3bffeb28862cf6 /tmp/bitnami/pkg/cache/external-dns-0.12.0-0-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/external-dns-0.12.0-0-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/external-dns-0.12.0-0-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="0.12.0" \
|
||||
BITNAMI_APP_NAME="external-dns" \
|
||||
PATH="/opt/bitnami/external-dns/bin:$PATH"
|
||||
|
||||
EXPOSE 7979
|
||||
|
||||
WORKDIR /opt/bitnami/external-dns
|
||||
USER 1001
|
||||
ENTRYPOINT [ "external-dns" ]
|
||||
Reference in New Issue
Block a user