[bitnami/airflow-scheduler] Release 2.6.2-debian-11-r2 (#38615)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-06-23 14:24:40 +02:00 committed by GitHub
parent 6f72698b82
commit 17e9c0981e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 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-20T11:03:51Z" \
org.opencontainers.image.created="2023-06-23T11:38:42Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="2.6.2-debian-11-r1" \
org.opencontainers.image.ref.name="2.6.2-debian-11-r2" \
org.opencontainers.image.title="airflow-scheduler" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="2.6.2"

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