2.25.1-debian-10-r10 release
This commit is contained in:
parent
a03776ab8f
commit
ab17a773de
|
|
@ -15,7 +15,7 @@ RUN /build/install-gosu.sh
|
|||
|
||||
COPY rootfs /
|
||||
ENV BITNAMI_APP_NAME="git" \
|
||||
BITNAMI_IMAGE_VERSION="2.25.1-debian-10-r9" \
|
||||
BITNAMI_IMAGE_VERSION="2.25.1-debian-10-r10" \
|
||||
PATH="/opt/bitnami/git/bin:$PATH"
|
||||
|
||||
ENTRYPOINT [ "git" ]
|
||||
|
|
|
|||
|
|
@ -62,10 +62,10 @@ parse_uri() {
|
|||
# Solution based on https://tools.ietf.org/html/rfc3986#appendix-B with
|
||||
# additional sub-expressions to split authority into userinfo, host and port
|
||||
# Credits to Patryk Obara (see https://stackoverflow.com/a/45977232/6694969)
|
||||
local -r URI_REGEX='^(([^:/?#]+):)?(//((([^:/?#]+)@)?([^:/?#]+)(:([0-9]+))?))?(/([^?#]*))(\?([^#]*))?(#(.*))?'
|
||||
# || | ||| | | | | | | | | |
|
||||
# |2 scheme | ||6 userinfo 7 host | 9 port | 11 rpath | 13 query | 15 fragment
|
||||
# 1 scheme: | |5 userinfo@ 8 :... 10 path 12 ?... 14 #...
|
||||
local -r URI_REGEX='^(([^:/?#]+):)?(//((([^@/?#]+)@)?([^:/?#]+)(:([0-9]+))?))?(/([^?#]*))?(\?([^#]*))?(#(.*))?'
|
||||
# || | ||| | | | | | | | | |
|
||||
# |2 scheme | ||6 userinfo 7 host | 9 port | 11 rpath | 13 query | 15 fragment
|
||||
# 1 scheme: | |5 userinfo@ 8 :... 10 path 12 ?... 14 #...
|
||||
# | 4 authority
|
||||
# 3 //...
|
||||
local index=0
|
||||
|
|
@ -95,7 +95,7 @@ parse_uri() {
|
|||
index=14
|
||||
;;
|
||||
*)
|
||||
stderr_print "unrecognized component $1"
|
||||
stderr_print "unrecognized component $component"
|
||||
return 1
|
||||
;;
|
||||
esac
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ $ docker run --name git bitnami/git:latest
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`2-debian-10`, `2.25.1-debian-10-r9`, `2`, `2.25.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-git/blob/2.25.1-debian-10-r9/2/debian-10/Dockerfile)
|
||||
* [`2-debian-10`, `2.25.1-debian-10-r10`, `2`, `2.25.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-git/blob/2.25.1-debian-10-r10/2/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/git GitHub repo](https://github.com/bitnami/bitnami-docker-git).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue