From cf83d1450e37d5e506ee3e6425b2640630b4ba60 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 23 Aug 2021 23:40:18 +0000 Subject: [PATCH] 2.5.1-debian-10-r63 release --- .../tensorflow-resnet/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libfile.sh | 24 +++++++++++++++++-- bitnami/tensorflow-resnet/README.md | 2 +- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/bitnami/tensorflow-resnet/2/debian-10/Dockerfile b/bitnami/tensorflow-resnet/2/debian-10/Dockerfile index 7f3093cd5bc9..ad6610c746e1 100644 --- a/bitnami/tensorflow-resnet/2/debian-10/Dockerfile +++ b/bitnami/tensorflow-resnet/2/debian-10/Dockerfile @@ -15,7 +15,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / ENV BITNAMI_APP_NAME="tensorflow-resnet" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r62" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r63" \ PATH="/opt/bitnami/tensorflow-resnet/bin:/opt/bitnami/common/bin:$PATH" USER 1001 diff --git a/bitnami/tensorflow-resnet/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh b/bitnami/tensorflow-resnet/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh index dd47f25e4e45..41ebaf7464f6 100644 --- a/bitnami/tensorflow-resnet/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh +++ b/bitnami/tensorflow-resnet/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh @@ -10,7 +10,7 @@ # Functions ######################## -# Replace a regex in a file +# Replace a regex-matching string in a file # Arguments: # $1 - filename # $2 - match regex @@ -30,7 +30,7 @@ replace_in_file() { # We should avoid using 'sed in-place' substitutions # 1) They are not compatible with files mounted from ConfigMap(s) # 2) We found incompatibility issues with Debian10 and "in-place" substitutions - del=$'\001' # Use a non-printable character as a 'sed' delimiter to avoid issues + local -r del=$'\001' # Use a non-printable character as a 'sed' delimiter to avoid issues if [[ $posix_regex = true ]]; then result="$(sed -E "s${del}${match_regex}${del}${substitute_regex}${del}g" "$filename")" else @@ -39,6 +39,26 @@ replace_in_file() { echo "$result" > "$filename" } +######################## +# Replace a regex-matching multiline string in a file +# Arguments: +# $1 - filename +# $2 - match regex +# $3 - substitute regex +# Returns: +# None +######################### +replace_in_file_multiline() { + local filename="${1:?filename is required}" + local match_regex="${2:?match regex is required}" + local substitute_regex="${3:?substitute regex is required}" + + local result + local -r del=$'\001' # Use a non-printable character as a 'sed' delimiter to avoid issues + result="$(perl -pe "BEGIN{undef $/;} s${del}${match_regex}${del}${substitute_regex}${del}sg" "$filename")" + echo "$result" > "$filename" +} + ######################## # Remove a line in a file based on a regex # Arguments: diff --git a/bitnami/tensorflow-resnet/README.md b/bitnami/tensorflow-resnet/README.md index 7513d40003f3..a2f2d65ab237 100644 --- a/bitnami/tensorflow-resnet/README.md +++ b/bitnami/tensorflow-resnet/README.md @@ -42,7 +42,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.5.1`, `2.5.1-debian-10-r62`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-tensorflow-resnet/blob/2.5.1-debian-10-r62/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r63`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-tensorflow-resnet/blob/2.5.1-debian-10-r63/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/tensorflow-resnet GitHub repo](https://github.com/bitnami/bitnami-docker-tensorflow-resnet).