19 lines
986 B
Docker
19 lines
986 B
Docker
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-r9" \
|
|
PATH="/opt/bitnami/python/bin:$PATH"
|
|
|
|
EXPOSE 8000
|
|
|
|
WORKDIR /app
|
|
CMD ["python"]
|