2.4.3-debian-10-r4 release
This commit is contained in:
parent
8b94edcb85
commit
4615922c1b
|
|
@ -15,11 +15,12 @@ RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "spring-cloud-ski
|
|||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
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.4.3-debian-10-r3" \
|
||||
BITNAMI_IMAGE_VERSION="2.4.3-debian-10-r4" \
|
||||
PATH="/opt/bitnami/java/bin:/opt/bitnami/common/bin:$PATH"
|
||||
|
||||
USER 1001
|
||||
|
|
|
|||
|
|
@ -277,3 +277,15 @@ generate_random_string() {
|
|||
result="$(head -n "$((count + 10))" /dev/urandom | tr -dc "$filter" | head -c "$count")"
|
||||
echo "$result"
|
||||
}
|
||||
|
||||
########################
|
||||
# Create md5 hash from a string
|
||||
# Arguments:
|
||||
# $1 - string
|
||||
# Returns:
|
||||
# md5 hash - string
|
||||
#########################
|
||||
generate_md5_hash() {
|
||||
local -r str="${1:?missing input string}"
|
||||
echo -n "$str" | md5sum | awk '{print $1}'
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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-debian-10`, `2.4.3-debian-10-r3`, `2`, `2.4.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-spring-cloud-skipper/blob/2.4.3-debian-10-r3/2/debian-10/Dockerfile)
|
||||
* [`2-debian-10`, `2.4.3-debian-10-r4`, `2`, `2.4.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-spring-cloud-skipper/blob/2.4.3-debian-10-r4/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