From aa5cd7e98a0446bb0c222f82cee92f081b430ae2 Mon Sep 17 00:00:00 2001 From: Daniel Porto Date: Fri, 27 Mar 2020 13:01:09 +0000 Subject: [PATCH 1/6] Updates Alpine 3.11 and Python 3.8.0 to 3.8.2 (#67) --- 3.6-onbuild/Dockerfile | 6 +++--- 3.6-slim/Dockerfile | 4 ++-- 3.6/Dockerfile | 6 +++--- 3.7-onbuild/Dockerfile | 6 +++--- 3.7-slim/Dockerfile | 4 ++-- 3.7/Dockerfile | 6 +++--- 3.8-onbuild/Dockerfile | 6 +++--- 3.8-slim/Dockerfile | 6 +++--- 3.8/Dockerfile | 8 ++++---- 9 files changed, 26 insertions(+), 26 deletions(-) diff --git a/3.6-onbuild/Dockerfile b/3.6-onbuild/Dockerfile index 6d264c1..2c4c2bb 100644 --- a/3.6-onbuild/Dockerfile +++ b/3.6-onbuild/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ +ENV ALPINE_VERSION=3.11 \ PYTHON_VERSION=3.6.9 # PATHS @@ -25,7 +25,7 @@ ENV PYTHON_PATH=/usr/local/bin/ \ bash \ git \ ca-certificates \ - libssl1.0 \ + libressl-dev \ tzdata \ " \ # PACKAGES needed to built python diff --git a/3.6-slim/Dockerfile b/3.6-slim/Dockerfile index 72b2847..7384148 100644 --- a/3.6-slim/Dockerfile +++ b/3.6-slim/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ +ENV ALPINE_VERSION=3.11 \ PYTHON_VERSION=3.6.9 # PATHS diff --git a/3.6/Dockerfile b/3.6/Dockerfile index 362f426..9d911d7 100644 --- a/3.6/Dockerfile +++ b/3.6/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ +ENV ALPINE_VERSION=3.11 \ PYTHON_VERSION=3.6.9 # PATHS @@ -25,7 +25,7 @@ ENV PYTHON_PATH=/usr/local/bin/ \ bash \ git \ ca-certificates \ - libssl1.0 \ + libressl-dev \ tzdata \ " \ # PACKAGES needed to built python diff --git a/3.7-onbuild/Dockerfile b/3.7-onbuild/Dockerfile index 63c9758..f544ee9 100644 --- a/3.7-onbuild/Dockerfile +++ b/3.7-onbuild/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ +ENV ALPINE_VERSION=3.11 \ PYTHON_VERSION=3.7.3 # PATHS @@ -25,7 +25,7 @@ ENV PYTHON_PATH=/usr/local/bin/ \ bash \ git \ ca-certificates \ - libssl1.0 \ + libressl-dev \ tzdata \ " \ # PACKAGES needed to built python diff --git a/3.7-slim/Dockerfile b/3.7-slim/Dockerfile index 7157086..1428cad 100644 --- a/3.7-slim/Dockerfile +++ b/3.7-slim/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ +ENV ALPINE_VERSION=3.11 \ PYTHON_VERSION=3.7.3 # PATHS diff --git a/3.7/Dockerfile b/3.7/Dockerfile index 902cdac..ab8f2f0 100644 --- a/3.7/Dockerfile +++ b/3.7/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ +ENV ALPINE_VERSION=3.11 \ PYTHON_VERSION=3.7.3 # PATHS @@ -25,7 +25,7 @@ ENV PYTHON_PATH=/usr/local/bin/ \ bash \ git \ ca-certificates \ - libssl1.0 \ + libressl-dev \ libffi-dev \ tzdata \ " \ diff --git a/3.8-onbuild/Dockerfile b/3.8-onbuild/Dockerfile index 0f67794..2ccce93 100644 --- a/3.8-onbuild/Dockerfile +++ b/3.8-onbuild/Dockerfile @@ -1,8 +1,8 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ - PYTHON_VERSION=3.8.0 +ENV ALPINE_VERSION=3.11 \ + PYTHON_VERSION=3.8.2 # PATHS ENV PYTHON_PATH=/usr/local/bin/ \ diff --git a/3.8-slim/Dockerfile b/3.8-slim/Dockerfile index cff3d87..5867f14 100644 --- a/3.8-slim/Dockerfile +++ b/3.8-slim/Dockerfile @@ -1,8 +1,8 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ - PYTHON_VERSION=3.8.0 +ENV ALPINE_VERSION=3.11 \ + PYTHON_VERSION=3.8.2 # PATHS ENV PYTHON_PATH=/usr/local/bin/ \ diff --git a/3.8/Dockerfile b/3.8/Dockerfile index f8a2e10..de9331f 100644 --- a/3.8/Dockerfile +++ b/3.8/Dockerfile @@ -1,8 +1,8 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ - PYTHON_VERSION=3.8.0 +ENV ALPINE_VERSION=3.11 \ + PYTHON_VERSION=3.8.2 # PATHS ENV PYTHON_PATH=/usr/local/bin/ \ @@ -25,7 +25,7 @@ ENV PYTHON_PATH=/usr/local/bin/ \ bash \ git \ ca-certificates \ - libssl1.0 \ + libressl-dev \ libffi-dev \ tzdata \ " \ From bb0dd87ceea5128e9da8de64e3d2796268f5931c Mon Sep 17 00:00:00 2001 From: Daniel Porto Date: Fri, 27 Mar 2020 13:32:28 +0000 Subject: [PATCH 2/6] Hotfix - update ssl dependency for alpine 3.11 on-build --- 3.8-onbuild/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3.8-onbuild/Dockerfile b/3.8-onbuild/Dockerfile index 2ccce93..f73a428 100644 --- a/3.8-onbuild/Dockerfile +++ b/3.8-onbuild/Dockerfile @@ -25,7 +25,7 @@ ENV PYTHON_PATH=/usr/local/bin/ \ bash \ git \ ca-certificates \ - libssl1.0 \ + libressl-dev \ tzdata \ " \ # PACKAGES needed to built python From 553d3d3edc9422fff00cb3ff88c9e66dd067e692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ferreira=20Loff?= Date: Fri, 27 Mar 2020 21:05:10 +0000 Subject: [PATCH 3/6] link include files --- 2.7-onbuild/Dockerfile | 1 + 2.7-slim/Dockerfile | 1 + 2.7/Dockerfile | 1 + 3.6-onbuild/Dockerfile | 1 + 3.6-slim/Dockerfile | 1 + 3.6/Dockerfile | 1 + 3.7-onbuild/Dockerfile | 1 + 3.7-slim/Dockerfile | 1 + 3.7/Dockerfile | 1 + 3.8-onbuild/Dockerfile | 1 + 3.8-slim/Dockerfile | 1 + 3.8/Dockerfile | 1 + 12 files changed, 12 insertions(+) diff --git a/2.7-onbuild/Dockerfile b/2.7-onbuild/Dockerfile index 95b1340..9a710de 100644 --- a/2.7-onbuild/Dockerfile +++ b/2.7-onbuild/Dockerfile @@ -101,6 +101,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # set timezone info ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime ;\ # remove build dependencies and any leftover apk cache diff --git a/2.7-slim/Dockerfile b/2.7-slim/Dockerfile index 883ccdf..ed637f4 100644 --- a/2.7-slim/Dockerfile +++ b/2.7-slim/Dockerfile @@ -99,6 +99,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # remove build dependencies and any leftover apk cache apk del --no-cache --purge .build-deps ;\ rm -rf /var/cache/apk/* ;\ diff --git a/2.7/Dockerfile b/2.7/Dockerfile index 655384f..eede0f9 100644 --- a/2.7/Dockerfile +++ b/2.7/Dockerfile @@ -98,6 +98,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # set timezone info ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime ;\ # remove build dependencies and any leftover apk cache diff --git a/3.6-onbuild/Dockerfile b/3.6-onbuild/Dockerfile index 2c4c2bb..08f8787 100644 --- a/3.6-onbuild/Dockerfile +++ b/3.6-onbuild/Dockerfile @@ -101,6 +101,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # set timezone info ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime ;\ # remove build dependencies and any leftover apk cache diff --git a/3.6-slim/Dockerfile b/3.6-slim/Dockerfile index 7384148..976838f 100644 --- a/3.6-slim/Dockerfile +++ b/3.6-slim/Dockerfile @@ -100,6 +100,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # remove build dependencies and any leftover apk cache apk del --no-cache --purge .build-deps ;\ rm -rf /var/cache/apk/* ;\ diff --git a/3.6/Dockerfile b/3.6/Dockerfile index 9d911d7..ecfbfd8 100644 --- a/3.6/Dockerfile +++ b/3.6/Dockerfile @@ -98,6 +98,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # set timezone info ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime ;\ # remove build dependencies and any leftover apk cache diff --git a/3.7-onbuild/Dockerfile b/3.7-onbuild/Dockerfile index f544ee9..1303fd1 100644 --- a/3.7-onbuild/Dockerfile +++ b/3.7-onbuild/Dockerfile @@ -101,6 +101,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # set timezone info ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime ;\ # remove build dependencies and any leftover apk cache diff --git a/3.7-slim/Dockerfile b/3.7-slim/Dockerfile index 1428cad..d6b7888 100644 --- a/3.7-slim/Dockerfile +++ b/3.7-slim/Dockerfile @@ -100,6 +100,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # remove build dependencies and any leftover apk cache apk del --no-cache --purge .build-deps ;\ rm -rf /var/cache/apk/* ;\ diff --git a/3.7/Dockerfile b/3.7/Dockerfile index ab8f2f0..4c5c2ac 100644 --- a/3.7/Dockerfile +++ b/3.7/Dockerfile @@ -101,6 +101,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # set timezone info ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime ;\ # remove build dependencies and any leftover apk cache diff --git a/3.8-onbuild/Dockerfile b/3.8-onbuild/Dockerfile index f73a428..dc13051 100644 --- a/3.8-onbuild/Dockerfile +++ b/3.8-onbuild/Dockerfile @@ -101,6 +101,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # set timezone info ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime ;\ # remove build dependencies and any leftover apk cache diff --git a/3.8-slim/Dockerfile b/3.8-slim/Dockerfile index 5867f14..06aa447 100644 --- a/3.8-slim/Dockerfile +++ b/3.8-slim/Dockerfile @@ -101,6 +101,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # remove build dependencies and any leftover apk cache apk del --no-cache --purge .build-deps ;\ rm -rf /var/cache/apk/* ;\ diff --git a/3.8/Dockerfile b/3.8/Dockerfile index de9331f..1c141c4 100644 --- a/3.8/Dockerfile +++ b/3.8/Dockerfile @@ -101,6 +101,7 @@ RUN set -ex ;\ find /usr/local/lib/pyenv/versions/$PYTHON_VERSION/ -depth \( -name '*.pyo' -o -name '*.pyc' -o -name 'test' -o -name 'tests' \) -exec rm -rf '{}' + ;\ # symlink the binaries ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/bin/* $PYTHON_PATH ;\ + ln -s /usr/local/lib/pyenv/versions/$PYTHON_VERSION/include/python$PYTHON_MINOR_VERSION /usr/include/ ;\ # set timezone info ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime ;\ # remove build dependencies and any leftover apk cache From 2cbadd9e16946582efa04e873948f94a1c04bb61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ferreira=20Loff?= Date: Fri, 27 Mar 2020 21:33:27 +0000 Subject: [PATCH 4/6] Update to Alpine 3.11 on 2.7 python images. Add contribution section to README --- 2.7-onbuild/Dockerfile | 2 +- 2.7-slim/Dockerfile | 2 +- 2.7/Dockerfile | 2 +- README.md | 4 +++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/2.7-onbuild/Dockerfile b/2.7-onbuild/Dockerfile index 9a710de..d6b6a2d 100644 --- a/2.7-onbuild/Dockerfile +++ b/2.7-onbuild/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS ENV ALPINE_VERSION=3.8 \ diff --git a/2.7-slim/Dockerfile b/2.7-slim/Dockerfile index ed637f4..f8da739 100644 --- a/2.7-slim/Dockerfile +++ b/2.7-slim/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS ENV ALPINE_VERSION=3.8 \ diff --git a/2.7/Dockerfile b/2.7/Dockerfile index eede0f9..17e5c00 100644 --- a/2.7/Dockerfile +++ b/2.7/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.8 +FROM alpine:3.11 # VERSIONS ENV ALPINE_VERSION=3.8 \ diff --git a/README.md b/README.md index 84cb392..1b362a8 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ A small Python Docker image based on [Alpine Linux](http://alpinelinux.org/). - [Debugging](#debugging) - [Additional Arguments](#additional-arguments) - [Ecosystem](#ecosystem) + - [Contribution](#contribution) - [License](#license) @@ -233,7 +234,8 @@ These are some of the images that use `jfloff/alpine-python` as base image. *If [busmuth-hub]: https://hub.docker.com/r/eggdrasyl/bismuth-node/ - +## Contribution +Feel free to contribute with whatever you feel like this image is missing. There is also some changes that happen often like, updating Alpine or Python versions. Do not forget that this repo folders mirror **Python** version and **_not_** Alpine versions. ## License The code in this repository, unless otherwise noted, is MIT licensed. See the `LICENSE` file in this repository. From 6121dfd2c7a1233da78d5b3e980cb0f77cf3d6b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ferreira=20Loff?= Date: Sat, 28 Mar 2020 14:51:31 +0000 Subject: [PATCH 5/6] Fix ALPINE_VERSION env var on 2.7 builds --- 2.7-onbuild/Dockerfile | 2 +- 2.7-slim/Dockerfile | 2 +- 2.7/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/2.7-onbuild/Dockerfile b/2.7-onbuild/Dockerfile index d6b6a2d..91f6140 100644 --- a/2.7-onbuild/Dockerfile +++ b/2.7-onbuild/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ +ENV ALPINE_VERSION=3.11 \ PYTHON_VERSION=2.7.16 # PATHS diff --git a/2.7-slim/Dockerfile b/2.7-slim/Dockerfile index f8da739..d31f322 100644 --- a/2.7-slim/Dockerfile +++ b/2.7-slim/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ +ENV ALPINE_VERSION=3.11 \ PYTHON_VERSION=2.7.16 ENV PYTHON_PATH=/usr/local/bin/ \ diff --git a/2.7/Dockerfile b/2.7/Dockerfile index 17e5c00..721cffb 100644 --- a/2.7/Dockerfile +++ b/2.7/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.11 # VERSIONS -ENV ALPINE_VERSION=3.8 \ +ENV ALPINE_VERSION=3.11 \ PYTHON_VERSION=2.7.16 # PATHS From 7ae8be3ff086e91051a478ae5fa9acb9f4ec6967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ferreira=20Loff?= Date: Sat, 28 Mar 2020 15:12:31 +0000 Subject: [PATCH 6/6] Fix libssl package for Alpine 3.11 --- 2.7-onbuild/Dockerfile | 2 +- 2.7/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/2.7-onbuild/Dockerfile b/2.7-onbuild/Dockerfile index 91f6140..c374ebc 100644 --- a/2.7-onbuild/Dockerfile +++ b/2.7-onbuild/Dockerfile @@ -25,7 +25,7 @@ ENV PYTHON_PATH=/usr/local/bin/ \ bash \ git \ ca-certificates \ - libssl1.0 \ + libressl-dev \ tzdata \ " \ # PACKAGES needed to built python diff --git a/2.7/Dockerfile b/2.7/Dockerfile index 721cffb..01384e4 100644 --- a/2.7/Dockerfile +++ b/2.7/Dockerfile @@ -25,7 +25,7 @@ ENV PYTHON_PATH=/usr/local/bin/ \ bash \ git \ ca-certificates \ - libssl1.0 \ + libressl-dev \ tzdata \ " \ # PACKAGES needed to built python