[bitnami/ruby] Release 3.0.4-debian-11-r35 (#5491)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
eccd5bcd75
commit
2e5fe1ad04
|
|
@ -1,27 +1,31 @@
|
|||
FROM docker.io/bitnami/minideb:bullseye
|
||||
ENV OS_ARCH="amd64" \
|
||||
OS_FLAVOUR="debian-11" \
|
||||
OS_NAME="linux"
|
||||
|
||||
ARG TARGETARCH
|
||||
|
||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||
org.opencontainers.image.ref.name="3.0.4-debian-11-r34" \
|
||||
org.opencontainers.image.ref.name="3.0.4-debian-11-r35" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/ruby" \
|
||||
org.opencontainers.image.title="ruby" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="3.0.4"
|
||||
|
||||
ENV OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
OS_FLAVOUR="debian-11" \
|
||||
OS_NAME="linux"
|
||||
|
||||
COPY prebuildfs /
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages build-essential ca-certificates curl git gzip libc6 libcrypt1 libreadline-dev libreadline8 libsqlite3-dev libssl-dev libssl1.1 libtinfo6 pkg-config procps sqlite3 tar unzip wget zlib1g
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f ruby-3.0.4-153-linux-amd64-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/ruby-3.0.4-153-linux-amd64-debian-11.tar.gz -O ; \
|
||||
if [ ! -f ruby-3.0.4-153-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/ruby-3.0.4-153-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/ruby-3.0.4-153-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
echo "a0c64312075dfe1364bd5fc6fc290aef5c54707abe1a0a78877418aa79723914 ruby-3.0.4-153-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf ruby-3.0.4-153-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf ruby-3.0.4-153-linux-amd64-debian-11.tar.gz
|
||||
sha256sum -c ruby-3.0.4-153-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf ruby-3.0.4-153-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf ruby-3.0.4-153-linux-${OS_ARCH}-debian-11.tar.gz
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
RUN sed -i 's/^PASS_MAX_DAYS.*/PASS_MAX_DAYS 90/' /etc/login.defs && \
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
|
||||
|
||||
* [`3.1`, `3.1-debian-11`, `3.1.2`, `3.1.2-debian-11-r36`, `latest` (3.1/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/ruby/3.1/debian-11/Dockerfile)
|
||||
* [`3.0`, `3.0-debian-11`, `3.0.4`, `3.0.4-debian-11-r34` (3.0/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/ruby/3.0/debian-11/Dockerfile)
|
||||
* [`3.0`, `3.0-debian-11`, `3.0.4`, `3.0.4-debian-11-r35` (3.0/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/ruby/3.0/debian-11/Dockerfile)
|
||||
* [`2.7`, `2.7-debian-11`, `2.7.6`, `2.7.6-debian-11-r35` (2.7/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/ruby/2.7/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||
|
|
|
|||
Loading…
Reference in New Issue