Skip to content

Commit

Permalink
Test build for #2134
Browse files Browse the repository at this point in the history
  • Loading branch information
SUSE Update Bot committed Dec 10, 2024
1 parent 07606b5 commit fd44b43
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions helm-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ FROM opensuse/bci/bci-micro:latest
COPY --from=builder /target /
# Define labels according to https://en.opensuse.org/Building_derived_containers
# labelprefix=org.opensuse.application.helm
LABEL org.opencontainers.image.title="openSUSE Tumbleweed Kubernetes Package Manager"
LABEL org.opencontainers.image.description="Kubernetes Package Manager container based on the openSUSE Tumbleweed Base Container Image."
LABEL org.opencontainers.image.title="openSUSE Tumbleweed Helm (Kubernetes Package Manager)"
LABEL org.opencontainers.image.description="Helm (Kubernetes Package Manager) container based on the openSUSE Tumbleweed Base Container Image."
LABEL org.opencontainers.image.version="%%helm_version%%"
LABEL org.opencontainers.image.url="https://www.opensuse.org"
LABEL org.opencontainers.image.created="%BUILDTIME%"
Expand Down
2 changes: 1 addition & 1 deletion helm-image/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Kubernetes Package Manager container image
# Helm (Kubernetes Package Manager) container image

![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green)

Expand Down
8 changes: 6 additions & 2 deletions mariadb-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,12 @@ RUN set -euo pipefail; ln -s usr/local/bin/docker-entrypoint.sh / # backwards co
COPY healthcheck.sh /usr/local/bin/
RUN set -euo pipefail; chmod 755 /usr/local/bin/healthcheck.sh

COPY gosu /usr/local/bin/gosu
RUN set -euo pipefail; chmod 755 /usr/local/bin/gosu
COPY idexec /usr/local/bin/idexec
RUN set -euo pipefail; chmod 755 /usr/local/bin/idexec

# replace gosu calls with idexec
RUN set -euo pipefail; sed -i 's/gosu/idexec/g' /usr/local/bin/docker-entrypoint.sh
RUN set -euo pipefail; sed -i 's/gosu/idexec/g' /usr/local/bin/healthcheck.sh

RUN set -euo pipefail; sed -i -e 's,$(pwgen .*),$(openssl rand -base64 36),' /usr/local/bin/docker-entrypoint.sh

Expand Down
File renamed without changes.

0 comments on commit fd44b43

Please sign in to comment.