[bitnami/express] Release 4.18.2-debian-11-r87 (#38698)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-06-24 02:48:44 +02:00 committed by GitHub
parent e893636749
commit 7d68cb3bec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 5 deletions

View File

@ -1,12 +1,15 @@
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
FROM docker.io/bitnami/minideb:bullseye
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-06-20T23:52:10Z" \
org.opencontainers.image.created="2023-06-24T00:16:53Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="4.18.2-debian-11-r86" \
org.opencontainers.image.ref.name="4.18.2-debian-11-r87" \
org.opencontainers.image.title="express" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="4.18.2"
@ -22,7 +25,7 @@ RUN install_packages ca-certificates curl libbz2-1.0 libcom-err2 libcrypt1 libff
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"python-3.9.17-1-linux-${OS_ARCH}-debian-11" \
"node-18.16.0-2-linux-${OS_ARCH}-debian-11" \
"node-18.16.1-0-linux-${OS_ARCH}-debian-11" \
"wait-for-port-1.0.6-8-linux-${OS_ARCH}-debian-11" \
"express-4.18.2-11-linux-${OS_ARCH}-debian-11" \
) && \

View File

@ -9,7 +9,7 @@
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "18.16.0-2"
"version": "18.16.1-0"
},
"python": {
"arch": "amd64",

View File

@ -42,7 +42,7 @@ ensure_dir_exists() {
local owner_user="${2:-}"
local owner_group="${3:-}"
mkdir -p "${dir}"
[ -d "${dir}" ] || mkdir -p "${dir}"
if [[ -n $owner_user ]]; then
owned_by "$dir" "$owner_user" "$owner_group"
fi