5.3.12-debian-10-r22 release
This commit is contained in:
parent
31f1739024
commit
1a3a5c75d0
|
|
@ -8,7 +8,7 @@ ENV OS_ARCH="amd64" \
|
|||
COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages acl ca-certificates curl gzip libaudit1 libbsd0 libbz2-1.0 libc6 libcap-ng0 libcom-err2 libcurl4 libexpat1 libffi6 libfftw3-double3 libfontconfig1 libfreetype6 libgcc1 libgcrypt20 libglib2.0-0 libgmp10 libgnutls30 libgomp1 libgpg-error0 libgssapi-krb5-2 libhogweed4 libicu63 libidn2-0 libjemalloc2 libjpeg62-turbo libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 libldap-2.4-2 liblqr-1-0 libltdl7 liblzma5 libmagickcore-6.q16-6 libmagickwand-6.q16-6 libmcrypt4 libmemcached11 libmemcachedutil2 libncurses6 libnettle6 libnghttp2-14 libonig5 libp11-kit0 libpam0g libpcre3 libpng16-16 libpq5 libpsl5 libreadline7 librtmp1 libsasl2-2 libsodium23 libsqlite3-0 libssh2-1 libssl1.1 libstdc++6 libsybdb5 libtasn1-6 libtidy5deb1 libtinfo6 libunistring2 libuuid1 libwebp6 libx11-6 libxau6 libxcb1 libxdmcp6 libxext6 libxml2 libxslt1.1 libzip4 procps sudo tar unzip zlib1g
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "php" "7.4.26-4" --checksum 838dfca7642d20a1985fa51a92befa204826d181b13904a7c6ca7e32f6b8dea8
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "php" "7.4.27-0" --checksum e57e5a9bf4e909e4f7a18341b69a7c0780e13b122b22a78c30ee48653b8d821b
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "mysql-client" "10.3.32-0" --checksum 4a211faa9436c9747dfc4374cb9e8a7f9b0065dfc58dd4784cef0f5029c2e65e
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "symfony" "5.3.12-0" --checksum dd1ef8dd896d89f872b097779ebd37d92f9c04ae5eade4ab5be1992506d21238
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e
|
||||
|
|
@ -20,7 +20,7 @@ RUN /opt/bitnami/scripts/php/postunpack.sh
|
|||
RUN /opt/bitnami/scripts/symfony/postunpack.sh
|
||||
ENV ALLOW_EMPTY_PASSWORD="no" \
|
||||
BITNAMI_APP_NAME="symfony" \
|
||||
BITNAMI_IMAGE_VERSION="5.3.12-debian-10-r21" \
|
||||
BITNAMI_IMAGE_VERSION="5.3.12-debian-10-r22" \
|
||||
MARIADB_HOST="mariadb" \
|
||||
MARIADB_PORT_NUMBER="3306" \
|
||||
MARIADB_ROOT_PASSWORD="" \
|
||||
|
|
|
|||
|
|
@ -15,10 +15,10 @@
|
|||
},
|
||||
"php": {
|
||||
"arch": "amd64",
|
||||
"digest": "838dfca7642d20a1985fa51a92befa204826d181b13904a7c6ca7e32f6b8dea8",
|
||||
"digest": "e57e5a9bf4e909e4f7a18341b69a7c0780e13b122b22a78c30ee48653b8d821b",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "7.4.26-4"
|
||||
"version": "7.4.27-0"
|
||||
},
|
||||
"symfony": {
|
||||
"arch": "amd64",
|
||||
|
|
|
|||
|
|
@ -446,3 +446,19 @@ generate_sha_hash() {
|
|||
echo -n "$str" | "sha${algorithm}sum" | awk '{print $1}'
|
||||
}
|
||||
|
||||
########################
|
||||
# Converts a string to its hexadecimal representation
|
||||
# Arguments:
|
||||
# $1 - string
|
||||
# Returns:
|
||||
# hexadecimal representation of the string
|
||||
#########################
|
||||
convert_to_hex() {
|
||||
local -r str=${1:?missing input string}
|
||||
local -i iterator
|
||||
local char
|
||||
for ((iterator=0; iterator<${#str}; iterator++)); do
|
||||
char=${str:iterator:1}
|
||||
printf '%x' "'${char}"
|
||||
done
|
||||
}
|
||||
|
|
|
|||
|
|
@ -177,6 +177,8 @@ web_server_reload() {
|
|||
# --document-root - Path to document root directory
|
||||
# Apache-specific flags:
|
||||
# --apache-additional-configuration - Additional vhost configuration (no default)
|
||||
# --apache-additional-http-configuration - Additional HTTP vhost configuration (no default)
|
||||
# --apache-additional-https-configuration - Additional HTTPS vhost configuration (no default)
|
||||
# --apache-before-vhost-configuration - Configuration to add before the <VirtualHost> directive (no default)
|
||||
# --apache-allow-override - Whether to allow .htaccess files (only allowed when --move-htaccess is set to 'no' and type is not defined)
|
||||
# --apache-extra-directory-configuration - Extra configuration for the document root directory
|
||||
|
|
@ -224,6 +226,8 @@ ensure_web_server_app_configuration_exists() {
|
|||
|
||||
# Specific Apache flags
|
||||
--apache-additional-configuration \
|
||||
| --apache-additional-http-configuration \
|
||||
| --apache-additional-https-configuration \
|
||||
| --apache-before-vhost-configuration \
|
||||
| --apache-allow-override \
|
||||
| --apache-extra-directory-configuration \
|
||||
|
|
|
|||
|
|
@ -478,7 +478,7 @@ mysql_upgrade() {
|
|||
else
|
||||
mysql_start_bg
|
||||
is_boolean_yes "${ROOT_AUTH_ENABLED:-false}" && args+=("-p$(get_master_env_var_value ROOT_PASSWORD)")
|
||||
debug_execute "${DB_BIN_DIR}/mysql_upgrade" "${args[@]}"
|
||||
debug_execute "${DB_BIN_DIR}/mysql_upgrade" "${args[@]}" --force
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
|
||||
* [`6.0`, `6.0-debian-10`, `6.0.1`, `6.0.1-debian-10-r7` (6.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-symfony/blob/6.0.1-debian-10-r7/6.0/debian-10/Dockerfile)
|
||||
* [`5.4`, `5.4-debian-10`, `5.4.1`, `5.4.1-debian-10-r7` (5.4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-symfony/blob/5.4.1-debian-10-r7/5.4/debian-10/Dockerfile)
|
||||
* [`5.3`, `5.3-debian-10`, `5.3.12`, `5.3.12-debian-10-r21` (5.3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-symfony/blob/5.3.12-debian-10-r21/5.3/debian-10/Dockerfile)
|
||||
* [`5.3`, `5.3-debian-10`, `5.3.12`, `5.3.12-debian-10-r22` (5.3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-symfony/blob/5.3.12-debian-10-r22/5.3/debian-10/Dockerfile)
|
||||
* [`4.4`, `4.4-debian-10`, `4.4.35`, `4.4.35-debian-10-r21` (4.4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-symfony/blob/4.4.35-debian-10-r21/4.4/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/symfony GitHub repo](https://github.com/bitnami/bitnami-docker-symfony).
|
||||
|
|
|
|||
Loading…
Reference in New Issue