File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ ENV PYTHON_VERSION 2.7.13
17
17
RUN set -ex \
18
18
&& apk add --no-cache --virtual .fetch-deps \
19
19
gnupg \
20
- openssl \
20
+ libressl \
21
21
tar \
22
22
xz \
23
23
\
@@ -41,8 +41,8 @@ RUN set -ex \
41
41
linux-headers \
42
42
make \
43
43
ncurses-dev \
44
- openssl \
45
- openssl -dev \
44
+ libressl \
45
+ libressl -dev \
46
46
pax-utils \
47
47
readline-dev \
48
48
sqlite-dev \
@@ -85,7 +85,7 @@ ENV PYTHON_PIP_VERSION 9.0.1
85
85
86
86
RUN set -ex; \
87
87
\
88
- apk add --no-cache --virtual .fetch-deps openssl ; \
88
+ apk add --no-cache --virtual .fetch-deps libressl ; \
89
89
\
90
90
wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py' ; \
91
91
\
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ ENV PYTHON_VERSION 3.6.1
23
23
RUN set -ex \
24
24
&& apk add --no-cache --virtual .fetch-deps \
25
25
gnupg \
26
- openssl \
26
+ libressl \
27
27
tar \
28
28
xz \
29
29
\
@@ -47,8 +47,8 @@ RUN set -ex \
47
47
linux-headers \
48
48
make \
49
49
ncurses-dev \
50
- openssl \
51
- openssl -dev \
50
+ libressl \
51
+ libressl -dev \
52
52
pax-utils \
53
53
readline-dev \
54
54
sqlite-dev \
@@ -100,7 +100,7 @@ ENV PYTHON_PIP_VERSION 9.0.1
100
100
101
101
RUN set -ex; \
102
102
\
103
- apk add --no-cache --virtual .fetch-deps openssl ; \
103
+ apk add --no-cache --virtual .fetch-deps libressl ; \
104
104
\
105
105
wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py' ; \
106
106
\
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ for version in "${versions[@]}"; do
116
116
cp " $version /alpine/Dockerfile" " $version /alpine3.6/Dockerfile"
117
117
sed -ri \
118
118
-e ' s/(alpine):3.4/\1:3.6/g' \
119
+ -e ' s/openssl/libressl/g' \
119
120
" $version /alpine3.6/Dockerfile"
120
121
fi
121
122
for variant in wheezy alpine3.6 alpine slim ' ' ; do
You can’t perform that action at this time.
0 commit comments