mirror of
https://github.com/bitnami/containers.git
synced 2026-02-19 05:27:22 +08:00
[bitnami/symfony] Release 6.1.6-debian-11-r0 (#9841)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -4,11 +4,11 @@ ARG TARGETARCH
|
||||
|
||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||
org.opencontainers.image.ref.name="6.1.5-debian-11-r3" \
|
||||
org.opencontainers.image.ref.name="6.1.6-debian-11-r0" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/symfony" \
|
||||
org.opencontainers.image.title="symfony" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="6.1.5"
|
||||
org.opencontainers.image.version="6.1.6"
|
||||
|
||||
ENV OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
OS_FLAVOUR="debian-11" \
|
||||
@@ -22,7 +22,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
COMPONENTS=( \
|
||||
"php-8.0.24-3-linux-${OS_ARCH}-debian-11" \
|
||||
"mysql-client-10.6.10-1-linux-${OS_ARCH}-debian-11" \
|
||||
"symfony-6.1.5-1-linux-${OS_ARCH}-debian-11" \
|
||||
"symfony-6.1.6-0-linux-${OS_ARCH}-debian-11" \
|
||||
"gosu-1.14.0-155-linux-${OS_ARCH}-debian-11" \
|
||||
) && \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
@@ -32,7 +32,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
fi && \
|
||||
sha256sum -c "${COMPONENT}.tar.gz.sha256" && \
|
||||
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf "${COMPONENT}.tar.gz{,sha256}" ; \
|
||||
rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \
|
||||
done
|
||||
RUN apt-get autoremove --purge -y curl && \
|
||||
apt-get update && apt-get upgrade -y && \
|
||||
@@ -43,7 +43,7 @@ COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
|
||||
RUN /opt/bitnami/scripts/php/postunpack.sh
|
||||
RUN /opt/bitnami/scripts/symfony/postunpack.sh
|
||||
ENV APP_VERSION="6.1.5" \
|
||||
ENV APP_VERSION="6.1.6" \
|
||||
BITNAMI_APP_NAME="symfony" \
|
||||
PATH="/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/mysql/bin:/opt/bitnami/symfony/bin:/opt/bitnami/common/bin:$PATH" \
|
||||
PHP_ENABLE_OPCACHE="0"
|
||||
|
||||
@@ -22,9 +22,9 @@
|
||||
},
|
||||
"symfony": {
|
||||
"arch": "amd64",
|
||||
"digest": "d6c6c3ae4f8b48831e2913d787bc42bc181294826df9949034f42ebcadb187f6",
|
||||
"digest": "7521958983142860af757a4ee9ebecebf8df3c238b7a8ff480acd19568c41c0b",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "6.1.5-1"
|
||||
"version": "6.1.6-0"
|
||||
}
|
||||
}
|
||||
@@ -519,7 +519,7 @@ get_machine_id() {
|
||||
get_disk_device_id() {
|
||||
local device_id=""
|
||||
if grep -q ^/dev /proc/mounts; then
|
||||
device_id="$(grep -q ^/dev /proc/mounts | awk '$2 == "/" { print $1 }' | tail -1)"
|
||||
device_id="$(grep ^/dev /proc/mounts | awk '$2 == "/" { print $1 }' | tail -1)"
|
||||
fi
|
||||
# If it could not be autodetected, fallback to /dev/sda1 as a default
|
||||
if [[ -z "$device_id" || ! -b "$device_id" ]]; then
|
||||
@@ -538,7 +538,7 @@ get_disk_device_id() {
|
||||
# Root disk ID
|
||||
#########################
|
||||
get_root_disk_device_id() {
|
||||
get_disk_device_id | sed 's/[0-9]\+$//'
|
||||
get_disk_device_id | sed -E 's/p?[0-9]+$//'
|
||||
}
|
||||
|
||||
########################
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
rolling-tags:
|
||||
- "6.1"
|
||||
- "6.1-debian-11"
|
||||
- "6.1.5"
|
||||
- "6.1.6"
|
||||
- "latest"
|
||||
|
||||
Reference in New Issue
Block a user