Skip to content

Commit e8912b4

Browse files
author
Bitnami Bot
authored
[bitnami/jwt-cli] Release 6.0.0-debian-11-r23 (#53350)
Signed-off-by: Bitnami Containers <[email protected]>
1 parent 575b77f commit e8912b4

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

bitnami/jwt-cli/6/debian-11/Dockerfile

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ ARG TARGETARCH
77

88
LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf7802581b93214fff7d1bd2364c8bf22e8e" \
99
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
10-
org.opencontainers.image.created="2023-11-15T16:23:37Z" \
10+
org.opencontainers.image.created="2023-12-01T11:24:57Z" \
1111
org.opencontainers.image.description="Application packaged by VMware, Inc" \
1212
org.opencontainers.image.licenses="Apache-2.0" \
13-
org.opencontainers.image.ref.name="6.0.0-debian-11-r22" \
13+
org.opencontainers.image.ref.name="6.0.0-debian-11-r23" \
1414
org.opencontainers.image.title="jwt-cli" \
1515
org.opencontainers.image.vendor="VMware, Inc." \
1616
org.opencontainers.image.version="6.0.0"
@@ -21,20 +21,20 @@ ENV HOME="/" \
2121
OS_NAME="linux"
2222

2323
COPY prebuildfs /
24-
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
24+
SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"]
2525
# Install required system packages and dependencies
2626
RUN install_packages ca-certificates curl libgcc-s1 procps
27-
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
27+
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
2828
COMPONENTS=( \
29-
"jwt-cli-6.0.0-0-linux-${OS_ARCH}-debian-11" \
30-
) && \
29+
"jwt-cli-6.0.0-1-linux-${OS_ARCH}-debian-11" \
30+
) ; \
3131
for COMPONENT in "${COMPONENTS[@]}"; do \
3232
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
3333
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \
3434
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; \
35-
fi && \
36-
sha256sum -c "${COMPONENT}.tar.gz.sha256" && \
37-
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
35+
fi ; \
36+
sha256sum -c "${COMPONENT}.tar.gz.sha256" ; \
37+
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' ; \
3838
rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \
3939
done
4040
RUN apt-get autoremove --purge -y curl && \

bitnami/jwt-cli/6/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"arch": "amd64",
44
"distro": "debian-11",
55
"type": "NAMI",
6-
"version": "6.0.0-0"
6+
"version": "6.0.0-1"
77
}
88
}

bitnami/jwt-cli/6/debian-11/prebuildfs/usr/sbin/run-script

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fi
1010

1111
script=$1
1212
exit_code="${2:-96}"
13-
fail_if_not_present="${3:-n}"
13+
fail_if_not_present="${3:-y}"
1414

1515
if test -f "$script"; then
1616
sh $script

bitnami/jwt-cli/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# JWT CLI packaged by Bitnami
1+
# Bitnami package for JWT CLI
22

33
## What is JWT CLI?
44

@@ -25,7 +25,7 @@ docker-compose up -d
2525
* Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems.
2626
* With Bitnami images the latest bug fixes and features are available as soon as possible.
2727
* Bitnami containers, virtual machines and cloud images use the same components and configuration approach - making it easy to switch between formats based on your project needs.
28-
* All our images are based on [minideb](https://github.com/bitnami/minideb) a minimalist Debian based container image which gives you a small base container image and the familiarity of a leading Linux distribution.
28+
* All our images are based on [**minideb**](https://github.com/bitnami/minideb) -a minimalist Debian based container image that gives you a small base container image and the familiarity of a leading Linux distribution- or **scratch** -an explicitly empty image-.
2929
* All Bitnami images available in Docker Hub are signed with [Docker Content Trust (DCT)](https://docs.docker.com/engine/security/trust/content_trust/). You can use `DOCKER_CONTENT_TRUST=1` to verify the integrity of the images.
3030
* Bitnami container images are released on a regular basis with the latest distribution packages available.
3131

0 commit comments

Comments
 (0)