Deprecate unsupported branch 2.5 (#88)

This commit is contained in:
Francisco de Paz Galán 2021-05-06 16:50:21 +02:00 committed by GitHub
parent 6e429bc5f1
commit e1aa938cd7
10 changed files with 0 additions and 146 deletions

View File

@ -1,26 +0,0 @@
FROM docker.io/bitnami/minideb:buster
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV OS_ARCH="amd64" \
OS_FLAVOUR="debian-10" \
OS_NAME="linux"
COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages ca-certificates curl ghostscript gzip imagemagick libc6 libgmp-dev libncurses6 libreadline-dev libreadline7 libssl-dev libssl1.1 libtinfo6 libxml2-dev libxslt1-dev procps sqlite3 tar wget zlib1g zlib1g-dev
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/ruby-2.5.9-0-linux-amd64-debian-10.tar.gz && \
echo "9383b49ff75bdb7bf3beeb1a5c73c609c1cfa8e2b6947a1c642603022f1163aa /tmp/bitnami/pkg/cache/ruby-2.5.9-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/ruby-2.5.9-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/ruby-2.5.9-0-linux-amd64-debian-10.tar.gz
RUN sed -i 's/^PASS_MAX_DAYS.*/PASS_MAX_DAYS 90/' /etc/login.defs && \
sed -i 's/^PASS_MIN_DAYS.*/PASS_MIN_DAYS 0/' /etc/login.defs && \
sed -i 's/sha512/sha512 minlen=8/' /etc/pam.d/common-password
ENV BITNAMI_APP_NAME="ruby" \
BITNAMI_IMAGE_VERSION="2.5.9-prod-debian-10-r27" \
PATH="/opt/bitnami/ruby/bin:$PATH"
EXPOSE 3000
WORKDIR /app
CMD [ "irb" ]

View File

@ -1,11 +0,0 @@
version: '2'
services:
ruby:
tty: true # Enables debugging capabilities when attached to this container.
image: docker.io/bitnami/ruby:2.5-prod
# command: sh -c 'bundle install && bundle exec rails server -b 0.0.0.0 -p 3000'
ports:
- 3000:3000
volumes:
- .:/app

View File

@ -1,9 +0,0 @@
{
"ruby": {
"arch": "amd64",
"digest": "9383b49ff75bdb7bf3beeb1a5c73c609c1cfa8e2b6947a1c642603022f1163aa",
"distro": "debian-10",
"type": "NAMI",
"version": "2.5.9-0"
}
}

View File

@ -1,3 +0,0 @@
Bitnami containers ship with software bundles. You can find the licenses under:
/opt/bitnami/nami/COPYING
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt

View File

@ -1,24 +0,0 @@
#!/bin/sh
set -e
set -u
export DEBIAN_FRONTEND=noninteractive
n=0
max=2
until [ $n -gt $max ]; do
set +e
(
apt-get update -qq &&
apt-get install -y --no-install-recommends "$@"
)
CODE=$?
set -e
if [ $CODE -eq 0 ]; then
break
fi
if [ $n -eq $max ]; then
exit $CODE
fi
echo "apt failed, retrying"
n=$(($n + 1))
done
rm -r /var/lib/apt/lists /var/cache/apt/archives

View File

@ -1,26 +0,0 @@
FROM docker.io/bitnami/minideb:buster
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV OS_ARCH="amd64" \
OS_FLAVOUR="debian-10" \
OS_NAME="linux"
COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages build-essential ca-certificates curl ghostscript git gzip imagemagick libc6 libgmp-dev libncurses6 libreadline-dev libreadline7 libsqlite3-dev libssl-dev libssl1.1 libtinfo6 libxml2-dev libxslt1-dev pkg-config procps sqlite3 tar unzip wget zlib1g zlib1g-dev
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/ruby-2.5.9-0-linux-amd64-debian-10.tar.gz && \
echo "9383b49ff75bdb7bf3beeb1a5c73c609c1cfa8e2b6947a1c642603022f1163aa /tmp/bitnami/pkg/cache/ruby-2.5.9-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/ruby-2.5.9-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/ruby-2.5.9-0-linux-amd64-debian-10.tar.gz
RUN sed -i 's/^PASS_MAX_DAYS.*/PASS_MAX_DAYS 90/' /etc/login.defs && \
sed -i 's/^PASS_MIN_DAYS.*/PASS_MIN_DAYS 0/' /etc/login.defs && \
sed -i 's/sha512/sha512 minlen=8/' /etc/pam.d/common-password
ENV BITNAMI_APP_NAME="ruby" \
BITNAMI_IMAGE_VERSION="2.5.9-debian-10-r27" \
PATH="/opt/bitnami/ruby/bin:$PATH"
EXPOSE 3000
WORKDIR /app
CMD [ "irb" ]

View File

@ -1,11 +0,0 @@
version: '2'
services:
ruby:
tty: true # Enables debugging capabilities when attached to this container.
image: docker.io/bitnami/ruby:2.5
# command: sh -c 'bundle install && bundle exec rails server -b 0.0.0.0 -p 3000'
ports:
- 3000:3000
volumes:
- .:/app

View File

@ -1,9 +0,0 @@
{
"ruby": {
"arch": "amd64",
"digest": "9383b49ff75bdb7bf3beeb1a5c73c609c1cfa8e2b6947a1c642603022f1163aa",
"distro": "debian-10",
"type": "NAMI",
"version": "2.5.9-0"
}
}

View File

@ -1,3 +0,0 @@
Bitnami containers ship with software bundles. You can find the licenses under:
/opt/bitnami/nami/COPYING
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt

View File

@ -1,24 +0,0 @@
#!/bin/sh
set -e
set -u
export DEBIAN_FRONTEND=noninteractive
n=0
max=2
until [ $n -gt $max ]; do
set +e
(
apt-get update -qq &&
apt-get install -y --no-install-recommends "$@"
)
CODE=$?
set -e
if [ $CODE -eq 0 ]; then
break
fi
if [ $n -eq $max ]; then
exit $CODE
fi
echo "apt failed, retrying"
n=$(($n + 1))
done
rm -r /var/lib/apt/lists /var/cache/apt/archives