[bitnami/symfony] Release 5.4.20-debian-11-r8 (#25358)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-02-24 20:30:10 +01:00 committed by GitHub
parent 5bbf06895f
commit e39043c9c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 9 deletions

View File

@ -3,10 +3,10 @@ FROM docker.io/bitnami/minideb:bullseye
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-02-22T14:28:56Z" \
org.opencontainers.image.created="2023-02-24T18:51:04Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="5.4.20-debian-11-r7" \
org.opencontainers.image.ref.name="5.4.20-debian-11-r8" \
org.opencontainers.image.title="symfony" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="5.4.20"
@ -23,7 +23,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"php-8.1.16-2-linux-${OS_ARCH}-debian-11" \
"mysql-client-10.6.12-1-linux-${OS_ARCH}-debian-11" \
"symfony-5.4.20-2-linux-${OS_ARCH}-debian-11" \
"symfony-5.4.20-3-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-2-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \

View File

@ -22,9 +22,9 @@
},
"symfony": {
"arch": "amd64",
"digest": "8d2d9d8561139f0a0b63d67ba4c2e05b11666a8e7e8a040419feec42365c24ab",
"digest": "3699cac561c229e5c393bc378b03a80b9de8eaf8697380faa98b247c5d945a15",
"distro": "debian-11",
"type": "NAMI",
"version": "5.4.20-2"
"version": "5.4.20-3"
}
}

View File

@ -23,7 +23,6 @@ export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}"
# variable will be overridden with the value specified in that file
symfony_env_vars=(
SYMFONY_PORT_NUMBER
SYMFONY_PROJECT_SKELETON
SYMFONY_SKIP_DATABASE
SYMFONY_DATABASE_HOST
SYMFONY_DATABASE_PORT_NUMBER
@ -52,11 +51,9 @@ unset symfony_env_vars
# Paths
export SYMFONY_BASE_DIR="${BITNAMI_ROOT_DIR}/symfony"
export SYMFONY_SKELETON_DIR="${SYMFONY_BASE_DIR}/skeleton"
export SYMFONY_WEB_SKELETON_DIR="${SYMFONY_BASE_DIR}/website-skeleton"
# Symfony configuration
export SYMFONY_PORT_NUMBER="${SYMFONY_PORT_NUMBER:-8000}"
export SYMFONY_PROJECT_SKELETON="${SYMFONY_PROJECT_SKELETON:-symfony/website-skeleton}"
export SYMFONY_SKIP_DATABASE="${SYMFONY_SKIP_DATABASE:-no}" # only used during the first initialization
# Database configuration

View File

@ -17,7 +17,7 @@ set -o pipefail
# Ensure required directories exist
chmod g+rwX "$SYMFONY_BASE_DIR"
for dir in "/app" "$SYMFONY_SKELETON_DIR" "$SYMFONY_WEB_SKELETON_DIR"; do
for dir in "/app" "$SYMFONY_SKELETON_DIR"; do
ensure_dir_exists "$dir"
configure_permissions_ownership "$dir" -d "775" -f "664"
done