Remove branch 3

This commit is contained in:
Jota
2018-08-08 11:13:23 +02:00
parent fe28e6352b
commit bdf7ac8dc1
9 changed files with 0 additions and 123 deletions

View File

@@ -1,18 +0,0 @@
FROM bitnami/minideb-runtimes:jessie
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages build-essential ca-certificates curl git libbz2-1.0 libc6 libncurses5 libreadline6 libsqlite3-0 libssl1.0.0 libtinfo5 pkg-config unzip wget zlib1g
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/python-3.6.5-0-linux-x64-debian-8.tar.gz && \
echo "6dcdb118903956ea59642f3799e65cd087c34218e316796c60adab0c76bdf102 /tmp/bitnami/pkg/cache/python-3.6.5-0-linux-x64-debian-8.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/python-3.6.5-0-linux-x64-debian-8.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/python-3.6.5-0-linux-x64-debian-8.tar.gz
ENV BITNAMI_APP_NAME="python" \
BITNAMI_IMAGE_VERSION="3.6.5-debian-8-r74" \
PATH="/opt/bitnami/python/bin:$PATH"
EXPOSE 8000
WORKDIR /app
CMD ["python"]

View File

@@ -1,18 +0,0 @@
FROM bitnami/minideb-runtimes:stretch
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages build-essential ca-certificates curl git libbz2-1.0 libc6 libffi6 libncurses5 libreadline7 libsqlite3-0 libssl1.1 libtinfo5 pkg-config unzip wget zlib1g
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/python-3.7.0-1-linux-amd64-debian-9.tar.gz && \
echo "7ce6542a2212e3f4a934c3e1d0e7b84e1707847dce1fd80da4aeeb991bb8ef8e /tmp/bitnami/pkg/cache/python-3.7.0-1-linux-amd64-debian-9.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/python-3.7.0-1-linux-amd64-debian-9.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/python-3.7.0-1-linux-amd64-debian-9.tar.gz
ENV BITNAMI_APP_NAME="python" \
BITNAMI_IMAGE_VERSION="3.7.0-debian-9-r15" \
PATH="/opt/bitnami/python/bin:$PATH"
EXPOSE 8000
WORKDIR /app
CMD ["python"]

View File

@@ -1,10 +0,0 @@
version: '2'
services:
python:
tty: true # Enables debugging capabilities when attached to this container.
image: 'bitnami/python:3'
ports:
- 8000:8000
volumes:
- .:/app

View File

@@ -1,13 +0,0 @@
FROM bitnami/python:3.7.0-debian-9-r15 as development
FROM bitnami/minideb-runtimes:stretch
LABEL maintainer "Bitnami <containers@bitnami.com>"
COPY --from=development /opt/bitnami/python /opt/bitnami/python
ENV BITNAMI_APP_NAME="python" \
BITNAMI_IMAGE_VERSION="3.7.0-debian-9-r15" \
PATH="/opt/bitnami/python/bin:$PATH"
CMD ["python"]

View File

@@ -1,10 +0,0 @@
version: '2'
services:
python:
tty: true # Enables debugging capabilities when attached to this container.
image: 'bitnami/python:3'
ports:
- 8000:8000
volumes:
- .:/app

View File

@@ -1,18 +0,0 @@
FROM bitnami/oraclelinux-runtimes:7-r35
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages build-essential bzip2-libs ca-certificates curl git glibc keyutils-libs krb5-libs libcom_err libffi libselinux ncurses-libs nss-softokn-freebl openssl-libs pcre pkg-config readline sqlite unzip wget xz-libs zlib
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/python-3.7.0-1-linux-x86_64-ol-7.tar.gz && \
echo "dd8ff5d37c7de1a9c4419b5293e3b1ea46e1c3f236cf70949117dbe512e27b43 /tmp/bitnami/pkg/cache/python-3.7.0-1-linux-x86_64-ol-7.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/python-3.7.0-1-linux-x86_64-ol-7.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/python-3.7.0-1-linux-x86_64-ol-7.tar.gz
ENV BITNAMI_APP_NAME="python" \
BITNAMI_IMAGE_VERSION="3.7.0-ol-7-r15" \
PATH="/opt/bitnami/python/bin:$PATH"
EXPOSE 8000
WORKDIR /app
CMD ["python"]

View File

@@ -1,10 +0,0 @@
version: '2'
services:
python:
tty: true # Enables debugging capabilities when attached to this container.
image: 'bitnami/python:3-ol-7'
ports:
- 8000:8000
volumes:
- .:/app

View File

@@ -1,13 +0,0 @@
FROM bitnami/python:3.7.0-ol-7-r15 as development
FROM bitnami/oraclelinux-runtimes:7-r35
LABEL maintainer "Bitnami <containers@bitnami.com>"
COPY --from=development /opt/bitnami/python /opt/bitnami/python
ENV BITNAMI_APP_NAME="python" \
BITNAMI_IMAGE_VERSION="3.7.0-ol-7-r15" \
PATH="/opt/bitnami/python/bin:$PATH"
CMD ["python"]

View File

@@ -1,13 +0,0 @@
FROM bitnami/python:3.6.5-debian-8-r74 as development
FROM bitnami/minideb-runtimes:jessie
LABEL maintainer "Bitnami <containers@bitnami.com>"
COPY --from=development /opt/bitnami/python /opt/bitnami/python
ENV BITNAMI_APP_NAME="python" \
BITNAMI_IMAGE_VERSION="3.6.5-debian-8-r74" \
PATH="/opt/bitnami/python/bin:$PATH"
CMD ["python"]