2.6.2-debian-10-r0 release
This commit is contained in:
parent
2f719a4149
commit
282601a9e6
|
|
@ -11,14 +11,14 @@ COPY prebuildfs /
|
|||
RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 procps tar
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "1.8.292-0" --checksum 700e2d8391934048faefb45b4c3a2af74bc7b85d4c4e0e9a24164d7256456ca2
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "yq" "3.4.1-0" --checksum c88c76a7b5214407821771e5fc340f0320d5ded19eada938629603a982b8b640
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "spring-cloud-skipper" "2.6.1-0" --checksum dc0918f5b86ea9cfe8c0b358dc6c613a4cd69ef3f083573a8cb1ea0b88437037
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "spring-cloud-skipper" "2.6.2-0" --checksum 3bc755c9612626612c19cfd883020f7034e55361619794c84b9f2a0a7e3122ad
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50
|
||||
RUN chmod g+rwX /opt/bitnami
|
||||
|
||||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/spring-cloud-skipper/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="spring-cloud-skipper" \
|
||||
BITNAMI_IMAGE_VERSION="2.6.1-debian-10-r95" \
|
||||
BITNAMI_IMAGE_VERSION="2.6.2-debian-10-r0" \
|
||||
PATH="/opt/bitnami/java/bin:/opt/bitnami/common/bin:$PATH"
|
||||
|
||||
USER 1001
|
||||
|
|
|
|||
|
|
@ -15,10 +15,10 @@
|
|||
},
|
||||
"spring-cloud-skipper": {
|
||||
"arch": "amd64",
|
||||
"digest": "dc0918f5b86ea9cfe8c0b358dc6c613a4cd69ef3f083573a8cb1ea0b88437037",
|
||||
"digest": "3bc755c9612626612c19cfd883020f7034e55361619794c84b9f2a0a7e3122ad",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "2.6.1-0"
|
||||
"version": "2.6.2-0"
|
||||
},
|
||||
"yq": {
|
||||
"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
|
||||
;;
|
||||
|
|
|
|||
|
|
@ -39,7 +39,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/).
|
||||
|
||||
|
||||
* [`2`, `2-debian-10`, `2.6.1`, `2.6.1-debian-10-r95`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-spring-cloud-skipper/blob/2.6.1-debian-10-r95/2/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-10`, `2.6.2`, `2.6.2-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-spring-cloud-skipper/blob/2.6.2-debian-10-r0/2/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/spring-cloud-skipper GitHub repo](https://github.com/bitnami/bitnami-docker-spring-cloud-skipper).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue