5.0.7-ol-7-r61 release
This commit is contained in:
parent
891594d832
commit
528d7577f4
|
|
@ -13,11 +13,7 @@ RUN install_packages ca-certificates curl glibc gzip hostname libaio-devel procp
|
|||
RUN . ./libcomponent.sh && component_unpack "redis" "5.0.7-0" --checksum 21935196027fe2f029041b772546a328a1d5f0d6e7f7f3679f3c2008a8958957
|
||||
RUN yum upgrade -y && \
|
||||
rm -r /var/cache/yum
|
||||
RUN curl --silent -L https://github.com/tianon/gosu/releases/download/1.11/gosu-amd64 > /usr/local/bin/gosu && \
|
||||
echo 0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7 /usr/local/bin/gosu | sha256sum --check && \
|
||||
chmod u+x /usr/local/bin/gosu && \
|
||||
mkdir -p /opt/bitnami/licenses && \
|
||||
curl --silent -L https://raw.githubusercontent.com/tianon/gosu/master/LICENSE > /opt/bitnami/licenses/gosu-1.11.txt
|
||||
RUN /build/install-gosu.sh
|
||||
RUN curl --silent -L https://github.com/bitnami/wait-for-port/releases/download/v1.0/wait-for-port.zip > /tmp/wait-for-port.zip && \
|
||||
echo "8d26181f4629211b70db4f96236616056b1ed8e5920d8023f7c883071e76c1ed /tmp/wait-for-port.zip" | sha256sum --check && \
|
||||
unzip -q -d /usr/local/bin -o /tmp/wait-for-port.zip wait-for-port && \
|
||||
|
|
@ -27,7 +23,7 @@ RUN curl --silent -L https://github.com/bitnami/wait-for-port/releases/download/
|
|||
COPY rootfs /
|
||||
RUN /postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="redis" \
|
||||
BITNAMI_IMAGE_VERSION="5.0.7-ol-7-r60" \
|
||||
BITNAMI_IMAGE_VERSION="5.0.7-ol-7-r61" \
|
||||
NAMI_PREFIX="/.nami" \
|
||||
PATH="/opt/bitnami/redis/bin:$PATH"
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
VERSION="1.11"
|
||||
SHA256="0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7"
|
||||
|
||||
curl --silent -L "https://github.com/tianon/gosu/releases/download/${VERSION}/gosu-amd64" > "/usr/local/bin/gosu"
|
||||
echo "$SHA256" "/usr/local/bin/gosu" | sha256sum --check
|
||||
chmod u+x "/usr/local/bin/gosu"
|
||||
mkdir -p "/opt/bitnami/licenses"
|
||||
curl --silent -L "https://raw.githubusercontent.com/tianon/gosu/master/LICENSE" > "/opt/bitnami/licenses/gosu-${VERSION}.txt"
|
||||
|
|
@ -46,7 +46,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/containers/how-to/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`5.0-ol-7`, `5.0.7-ol-7-r60` (5.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/5.0.7-ol-7-r60/5.0/ol-7/Dockerfile)
|
||||
* [`5.0-ol-7`, `5.0.7-ol-7-r61` (5.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/5.0.7-ol-7-r61/5.0/ol-7/Dockerfile)
|
||||
* [`5.0-debian-9`, `5.0.7-debian-9-r51`, `5.0`, `5.0.7`, `5.0.7-r51`, `latest` (5.0/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/5.0.7-debian-9-r51/5.0/debian-9/Dockerfile)
|
||||
* [`4.0-ol-7`, `4.0.14-ol-7-r310` (4.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/4.0.14-ol-7-r310/4.0/ol-7/Dockerfile)
|
||||
* [`4.0-debian-9`, `4.0.14-debian-9-r271`, `4.0`, `4.0.14`, `4.0.14-r271` (4.0/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/4.0.14-debian-9-r271/4.0/debian-9/Dockerfile)
|
||||
|
|
|
|||
Loading…
Reference in New Issue