diff --git a/bitnami/python/2/rhel-7/Dockerfile b/bitnami/python/2/rhel-7/Dockerfile deleted file mode 100644 index 5eb7a602f75e..000000000000 --- a/bitnami/python/2/rhel-7/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -FROM registry.rhc4tp.openshift.com/bitnami/rhel-extras-7:latest -LABEL maintainer "Bitnami " - -ENV BITNAMI_PKG_CHMOD="-R g+rwX" \ - HOME="/" - -# Install required system packages and dependencies -RUN install_packages bzip2-libs curl gcc gcc-c++ git glibc keyutils-libs krb5-libs libcom_err libselinux libtool make ncurses-libs nss-softokn-freebl openssl-libs patch pcre pkgconfig readline sqlite unzip zlib -RUN bitnami-pkg install python-2.7.16-0 --checksum 131f66315fd55f1c6baab732ad8504a25c1b91638c057e87a12100c04c187877 - -COPY rootfs / -ENV BITNAMI_APP_NAME="python" \ - BITNAMI_IMAGE_VERSION="2.7.16-rhel-7-r45" \ - NAMI_PREFIX="/.nami" \ - PATH="/opt/bitnami/python/bin:$PATH" - -EXPOSE 8000 - -WORKDIR /app -USER 1001 -ENTRYPOINT [ "/app-entrypoint.sh" ] -CMD [ "python" ] diff --git a/bitnami/python/2/rhel-7/docker-compose.yml b/bitnami/python/2/rhel-7/docker-compose.yml deleted file mode 100644 index b86886ddf649..000000000000 --- a/bitnami/python/2/rhel-7/docker-compose.yml +++ /dev/null @@ -1,14 +0,0 @@ -version: '2' - -services: - python: - tty: true # Enables debugging capabilities when attached to this container. - # Force docker-compose to use a comprehensive name for the image - image: bitnami_python:2-rhel-7 - # Build action should be successful from any RHEL Host system running the Docker service with subscription managed registered - # + info: https://access.redhat.com/solutions/253273 - build: . - ports: - - 8000:8000 - volumes: - - .:/app diff --git a/bitnami/python/2/rhel-7/rootfs/app-entrypoint.sh b/bitnami/python/2/rhel-7/rootfs/app-entrypoint.sh deleted file mode 100755 index 5290b9e9ac54..000000000000 --- a/bitnami/python/2/rhel-7/rootfs/app-entrypoint.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -e - -. /opt/bitnami/base/functions -. /opt/bitnami/base/helpers - -print_welcome_page - - - -exec tini -- "$@" diff --git a/bitnami/python/3.6/rhel-7/Dockerfile b/bitnami/python/3.6/rhel-7/Dockerfile deleted file mode 100644 index 56ec8ef99664..000000000000 --- a/bitnami/python/3.6/rhel-7/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -FROM registry.rhc4tp.openshift.com/bitnami/rhel-extras-base-7:latest -LABEL maintainer "Bitnami " - -# Install required system packages and dependencies -RUN install_packages bzip2-libs ca-certificates curl gcc gcc-c++ git glibc keyutils-libs krb5-libs libcom_err libffi libselinux libtool make ncurses-libs nss-softokn-freebl openssl-libs patch pcre pkgconfig readline sqlite unzip wget xz-libs zlib -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/python-3.6.8-2-linux-x86_64-rhel-7.tar.gz && \ - echo "e717a899c99dba496d1dc67ee61d99c73974f7379f0a180e4091480e54a5ab29 /tmp/bitnami/pkg/cache/python-3.6.8-2-linux-x86_64-rhel-7.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/python-3.6.8-2-linux-x86_64-rhel-7.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/python-3.6.8-2-linux-x86_64-rhel-7.tar.gz - -ENV BITNAMI_APP_NAME="python" \ - BITNAMI_IMAGE_VERSION="3.6.8-rhel-7-r60" \ - BITNAMI_PKG_CHMOD="-R g+rwX" \ - HOME="/" \ - NAMI_PREFIX="/.nami" \ - PATH="/opt/bitnami/python/bin:$PATH" - -EXPOSE 8000 - -WORKDIR /app -USER 1001 -CMD [ "python" ] diff --git a/bitnami/python/3.6/rhel-7/docker-compose.yml b/bitnami/python/3.6/rhel-7/docker-compose.yml deleted file mode 100644 index 89ce7d528858..000000000000 --- a/bitnami/python/3.6/rhel-7/docker-compose.yml +++ /dev/null @@ -1,14 +0,0 @@ -version: '2' - -services: - python: - tty: true # Enables debugging capabilities when attached to this container. - # Force docker-compose to use a comprehensive name for the image - image: bitnami_python:3.6-rhel-7 - # Build action should be successful from any RHEL Host system running the Docker service with subscription managed registered - # + info: https://access.redhat.com/solutions/253273 - build: . - ports: - - 8000:8000 - volumes: - - .:/app