Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions 2.7/alpine3.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ENV PYTHON_VERSION 2.7.13
RUN set -ex \
&& apk add --no-cache --virtual .fetch-deps \
gnupg \
openssl \
libressl \
tar \
xz \
\
Expand All @@ -41,8 +41,8 @@ RUN set -ex \
linux-headers \
make \
ncurses-dev \
openssl \
openssl-dev \
libressl \
libressl-dev \
pax-utils \
readline-dev \
sqlite-dev \
Expand Down Expand Up @@ -85,7 +85,7 @@ ENV PYTHON_PIP_VERSION 9.0.1

RUN set -ex; \
\
apk add --no-cache --virtual .fetch-deps openssl; \
apk add --no-cache --virtual .fetch-deps libressl; \
\
wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py'; \
\
Expand Down
8 changes: 4 additions & 4 deletions 3.6/alpine3.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ENV PYTHON_VERSION 3.6.1
RUN set -ex \
&& apk add --no-cache --virtual .fetch-deps \
gnupg \
openssl \
libressl \
tar \
xz \
\
Expand All @@ -47,8 +47,8 @@ RUN set -ex \
linux-headers \
make \
ncurses-dev \
openssl \
openssl-dev \
libressl \
libressl-dev \
pax-utils \
readline-dev \
sqlite-dev \
Expand Down Expand Up @@ -100,7 +100,7 @@ ENV PYTHON_PIP_VERSION 9.0.1

RUN set -ex; \
\
apk add --no-cache --virtual .fetch-deps openssl; \
apk add --no-cache --virtual .fetch-deps libressl; \
\
wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py'; \
\
Expand Down
1 change: 1 addition & 0 deletions update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ for version in "${versions[@]}"; do
cp "$version/alpine/Dockerfile" "$version/alpine3.6/Dockerfile"
sed -ri \
-e 's/(alpine):3.4/\1:3.6/g' \
-e 's/openssl/libressl/g' \
"$version/alpine3.6/Dockerfile"
fi
for variant in wheezy alpine3.6 alpine slim ''; do
Expand Down