mirror of
https://github.com/bitnami/containers.git
synced 2026-03-04 14:57:23 +08:00
3.1.1-debian-10-r56 release
This commit is contained in:
@@ -10,7 +10,7 @@ ENV HOME="/" \
|
||||
COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages acl ca-certificates curl gzip libbz2-1.0 libc6 libffi6 libgcc1 liblzma5 libncursesw6 libreadline7 libsqlite3-0 libssl1.1 libstdc++6 libtinfo6 procps tar zlib1g
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "python" "3.6.13-3" --checksum 24afa03a5424804510c07bb5283eca34df2e065140351714298e5f6c3e995ff7
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "python" "3.6.13-4" --checksum d2bb3809d373b467d43598104236795da9f586c9c3ea528d1062dde436928555
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "1.8.292-0" --checksum 700e2d8391934048faefb45b4c3a2af74bc7b85d4c4e0e9a24164d7256456ca2
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "spark" "3.1.1-1" --checksum 8cc5605af3c72f10b7e20b26a7ee42b4d6f67beb6831a29cd7f2b4037de2e830
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50
|
||||
@@ -19,7 +19,7 @@ RUN chmod g+rwX /opt/bitnami
|
||||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/spark/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="spark" \
|
||||
BITNAMI_IMAGE_VERSION="3.1.1-debian-10-r55" \
|
||||
BITNAMI_IMAGE_VERSION="3.1.1-debian-10-r56" \
|
||||
JAVA_HOME="/opt/bitnami/java" \
|
||||
LD_LIBRARY_PATH="/opt/bitnami/python/lib/:/opt/bitnami/spark/venv/lib/python3.6/site-packages/numpy.libs/:$LD_LIBRARY_PATH" \
|
||||
LIBNSS_WRAPPER_PATH="/opt/bitnami/common/lib/libnss_wrapper.so" \
|
||||
|
||||
@@ -15,10 +15,10 @@
|
||||
},
|
||||
"python": {
|
||||
"arch": "amd64",
|
||||
"digest": "24afa03a5424804510c07bb5283eca34df2e065140351714298e5f6c3e995ff7",
|
||||
"digest": "d2bb3809d373b467d43598104236795da9f586c9c3ea528d1062dde436928555",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "3.6.13-3"
|
||||
"version": "3.6.13-4"
|
||||
},
|
||||
"spark": {
|
||||
"arch": "amd64",
|
||||
|
||||
@@ -181,7 +181,7 @@ validate_ipv4() {
|
||||
local stat=1
|
||||
|
||||
if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
|
||||
read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")"
|
||||
read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")"
|
||||
[[ ${ip_array[0]} -le 255 && ${ip_array[1]} -le 255 \
|
||||
&& ${ip_array[2]} -le 255 && ${ip_array[3]} -le 255 ]]
|
||||
stat=$?
|
||||
|
||||
@@ -180,6 +180,7 @@ web_server_reload() {
|
||||
# --apache-move-htaccess - Move .htaccess files to a common place so they can be loaded during Apache startup
|
||||
# NGINX-specific flags:
|
||||
# --nginx-additional-configuration - Additional server block configuration (no default)
|
||||
# --nginx-external-configuration - Configuration external to server block (no default)
|
||||
# Returns:
|
||||
# true if the configuration was enabled, false otherwise
|
||||
########################
|
||||
@@ -220,7 +221,8 @@ ensure_web_server_app_configuration_exists() {
|
||||
;;
|
||||
|
||||
# Specific NGINX flags
|
||||
--nginx-additional-configuration)
|
||||
--nginx-additional-configuration \
|
||||
| --nginx-external-configuration)
|
||||
nginx_args+=("${1//nginx-/}" "${2:?missing value}")
|
||||
shift
|
||||
;;
|
||||
|
||||
@@ -43,7 +43,7 @@ Non-root container images add an extra layer of security and are generally recom
|
||||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`3`, `3-debian-10`, `3.1.1`, `3.1.1-debian-10-r55`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-spark/blob/3.1.1-debian-10-r55/3/debian-10/Dockerfile)
|
||||
* [`3`, `3-debian-10`, `3.1.1`, `3.1.1-debian-10-r56`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-spark/blob/3.1.1-debian-10-r56/3/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/spark GitHub repo](https://github.com/bitnami/bitnami-docker-spark).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user