Dockerfile aktualisiert
Some checks failed
Create postgresql docker image / Explore-Gitea-Actions (push) Failing after 1m51s
Some checks failed
Create postgresql docker image / Explore-Gitea-Actions (push) Failing after 1m51s
This commit is contained in:
12
Dockerfile
12
Dockerfile
@@ -1,17 +1,17 @@
|
||||
# Copyright Broadcom, Inc. All Rights Reserved.
|
||||
# SPDX-License-Identifier: APACHE-2.0
|
||||
|
||||
FROM docker.io/bitnami/minideb:bookworm
|
||||
FROM docker.io/bitnami/minideb:trixie
|
||||
|
||||
ARG TARGETARCH
|
||||
|
||||
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
|
||||
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:trixie" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="20250918-debian-12" \
|
||||
org.opencontainers.image.source="https://git.cooltux.net/marko/docker-dokuwiki-debian12" \
|
||||
org.opencontainers.image.source="https://git.cooltux.net/marko/docker-dokuwiki-debian13" \
|
||||
org.opencontainers.image.title="dokuwiki" \
|
||||
org.opencontainers.image.vendor="Marko Oldenburg" \
|
||||
org.opencontainers.image.version="20250918"
|
||||
org.opencontainers.image.version="20251031"
|
||||
|
||||
ENV HOME="/" \
|
||||
OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
@@ -30,7 +30,7 @@ RUN cd /tmp/build-dokuwiki_source/ ; \
|
||||
mkdir -p dokuwiki/files/dokuwiki ; \
|
||||
curl -SsLf "https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz" -O ; \
|
||||
tar -zxf "dokuwiki-stable.tgz" -C dokuwiki/files/dokuwiki --strip-components=1 --no-same-owner ; \
|
||||
tar -czf "/tmp/bitnami/pkg/cache/dokuwiki-20250918-linux-amd64-debian-12.tar.gz" dokuwiki ; \
|
||||
tar -czf "/tmp/bitnami/pkg/cache/dokuwiki-stable.tar.gz" dokuwiki ; \
|
||||
cd /tmp/ ; \
|
||||
rm -rf build-dokuwiki_source
|
||||
|
||||
@@ -50,7 +50,7 @@ RUN cd /tmp/bitnami/pkg/cache/ ; \
|
||||
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' ; \
|
||||
rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \
|
||||
done ; \
|
||||
tar -zxf "dokuwiki-20250918-linux-amd64-debian-12.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files'
|
||||
tar -zxf "dokuwiki-stable.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files'
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
||||
RUN chmod g+rwX /opt/bitnami
|
||||
|
||||
Reference in New Issue
Block a user