Remove rhel-7 folder

This commit is contained in:
Carlos Rodriguez Hernandez
2019-07-29 10:14:25 +00:00
parent f469539362
commit 8de39c28fe
5 changed files with 0 additions and 82 deletions

View File

@@ -1,22 +0,0 @@
FROM registry.rhc4tp.openshift.com/bitnami/rhel-extras-7:latest
LABEL maintainer "Bitnami <containers@bitnami.com>"
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" ]

View File

@@ -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

View File

@@ -1,10 +0,0 @@
#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
print_welcome_page
exec tini -- "$@"

View File

@@ -1,22 +0,0 @@
FROM registry.rhc4tp.openshift.com/bitnami/rhel-extras-base-7:latest
LABEL maintainer "Bitnami <containers@bitnami.com>"
# 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" ]

View File

@@ -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