[bitnami/rails] Release 6.1.7-3-debian-11-r4 (#28912)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Fran Mulero <fmulero@vmware.com>
This commit is contained in:
Bitnami Bot
2023-04-03 11:42:34 +02:00
committed by GitHub
parent adaf41617d
commit 3a595435c0
3 changed files with 25 additions and 19 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-03-28T05:58:35Z" \
org.opencontainers.image.created="2023-04-01T13:35:09Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="6.1.7-3-debian-11-r3" \
org.opencontainers.image.ref.name="6.1.7-3-debian-11-r4" \
org.opencontainers.image.title="rails" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="6.1.7-3"
@@ -21,13 +21,13 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN install_packages ca-certificates curl git libaudit1 libbz2-1.0 libcap-ng0 libcom-err2 libcrypt1 libffi7 libgcc-s1 libgmp10 libgnutls30 libgssapi-krb5-2 libhogweed6 libicu67 libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblzma5 libmariadb3 libncurses6 libncursesw6 libnettle8 libnsl2 libp11-kit0 libpam0g libpq5 libreadline-dev libreadline8 libsasl2-2 libsqlite3-0 libssl-dev libssl1.1 libstdc++6 libtasn1-6 libtinfo6 libtirpc3 libunistring2 libxml2 procps sqlite3 sudo zlib1g
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"python-3.8.16-8-linux-${OS_ARCH}-debian-11" \
"ruby-2.7.7-5-linux-${OS_ARCH}-debian-11" \
"node-18.15.0-1-linux-${OS_ARCH}-debian-11" \
"mysql-client-10.6.12-2-linux-${OS_ARCH}-debian-11" \
"wait-for-port-1.0.6-2-linux-${OS_ARCH}-debian-11" \
"rails-6.1.7-3-1-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-3-linux-${OS_ARCH}-debian-11" \
"python-3.8.16-9-linux-${OS_ARCH}-debian-11" \
"ruby-2.7.8-0-linux-${OS_ARCH}-debian-11" \
"node-18.15.0-3-linux-${OS_ARCH}-debian-11" \
"mysql-client-10.6.12-4-linux-${OS_ARCH}-debian-11" \
"wait-for-port-1.0.6-4-linux-${OS_ARCH}-debian-11" \
"rails-6.1.7-3-3-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-5-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \

View File

@@ -3,42 +3,42 @@
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "1.16.0-3"
"version": "1.16.0-5"
},
"mysql-client": {
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "10.6.12-2"
"version": "10.6.12-4"
},
"node": {
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "18.15.0-1"
"version": "18.15.0-3"
},
"python": {
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "3.8.16-8"
"version": "3.8.16-9"
},
"rails": {
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "6.1.7-3-1"
"version": "6.1.7-3-3"
},
"ruby": {
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "2.7.7-5"
"version": "2.7.8-0"
},
"wait-for-port": {
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "1.0.6-2"
"version": "1.0.6-4"
}
}

View File

@@ -279,7 +279,7 @@ remove_logrotate_conf() {
# Flags:
# --custom-service-content - Custom content to add to the [service] block
# --environment - Environment variable to define (multiple --environment options may be passed)
# --environment-file - Text file with environment variables
# --environment-file - Text file with environment variables (multiple --environment-file options may be passed)
# --exec-start - Start command (required)
# --exec-start-pre - Pre-start command (optional)
# --exec-start-post - Post-start command (optional)
@@ -330,7 +330,6 @@ generate_systemd_conf() {
| --type \
| --user \
| --group \
| --environment-file \
| --exec-start \
| --exec-stop \
| --exec-reload \
@@ -368,6 +367,12 @@ generate_systemd_conf() {
[[ -n "$environment" ]] && environment+=$'\n'
environment+="Environment=${1:?"--environment value is missing"}"
;;
--environment-file)
shift
# It is possible to add multiple environment-file lines
[[ -n "$environment_file" ]] && environment_file+=$'\n'
environment_file+="EnvironmentFile=${1:?"--environment-file value is missing"}"
;;
*)
echo "Invalid command line flag ${1}" >&2
return 1
@@ -435,7 +440,8 @@ EOF
cat >> "$service_file" <<< "$environment"
fi
if [[ -n "$environment_file" ]]; then
cat >> "$service_file" <<< "EnvironmentFile=${environment_file}"
# This variable may contain multiple EnvironmentFile= directives
cat >> "$service_file" <<< "$environment_file"
fi
# Logging
if [[ -n "$standard_output" ]]; then