Reformat some minor whitespace and further shrink our alpine-debian diff
This commit is contained in:
parent
8a66fdc325
commit
ac647c4b59
|
@ -27,7 +27,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -13,16 +13,15 @@ ENV PYTHON_VERSION 2.7.12
|
|||
ENV PYTHON_PIP_VERSION 8.1.2
|
||||
|
||||
RUN set -ex \
|
||||
&& apk add --no-cache --virtual .fetch-deps curl gnupg \
|
||||
&& apk add --no-cache --virtual .fetch-deps curl gnupg tar xz \
|
||||
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz \
|
||||
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc \
|
||||
&& export GNUPGHOME="$(mktemp -d)" \
|
||||
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
|
||||
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
|
||||
&& rm -r "$GNUPGHOME" python.tar.xz.asc \
|
||||
&& mkdir -p /usr/src \
|
||||
&& tar -xJC /usr/src -f python.tar.xz \
|
||||
&& mv "/usr/src/Python-$PYTHON_VERSION" /usr/src/python \
|
||||
&& mkdir -p /usr/src/python \
|
||||
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
|
||||
&& rm python.tar.xz \
|
||||
\
|
||||
&& apk add --no-cache --virtual .build-deps \
|
||||
|
@ -38,7 +37,9 @@ RUN set -ex \
|
|||
sqlite-dev \
|
||||
zlib-dev \
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(getconf _NPROCESSORS_ONLN) \
|
||||
&& make install \
|
||||
&& curl -fSL 'https://bootstrap.pypa.io/get-pip.py' | python2 \
|
||||
|
|
|
@ -47,7 +47,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -27,7 +27,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -27,7 +27,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -13,16 +13,15 @@ ENV PYTHON_VERSION 3.3.6
|
|||
ENV PYTHON_PIP_VERSION 8.1.2
|
||||
|
||||
RUN set -ex \
|
||||
&& apk add --no-cache --virtual .fetch-deps curl gnupg \
|
||||
&& apk add --no-cache --virtual .fetch-deps curl gnupg tar xz \
|
||||
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz \
|
||||
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc \
|
||||
&& export GNUPGHOME="$(mktemp -d)" \
|
||||
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
|
||||
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
|
||||
&& rm -r "$GNUPGHOME" python.tar.xz.asc \
|
||||
&& mkdir -p /usr/src \
|
||||
&& tar -xJC /usr/src -f python.tar.xz \
|
||||
&& mv "/usr/src/Python-$PYTHON_VERSION" /usr/src/python \
|
||||
&& mkdir -p /usr/src/python \
|
||||
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
|
||||
&& rm python.tar.xz \
|
||||
\
|
||||
&& apk add --no-cache --virtual .build-deps \
|
||||
|
@ -39,7 +38,9 @@ RUN set -ex \
|
|||
xz-dev \
|
||||
zlib-dev \
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(getconf _NPROCESSORS_ONLN) \
|
||||
&& make install \
|
||||
&& curl -fSL 'https://bootstrap.pypa.io/get-pip.py' | python3 \
|
||||
|
|
|
@ -48,7 +48,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -27,7 +27,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -27,7 +27,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -13,16 +13,15 @@ ENV PYTHON_VERSION 3.4.5
|
|||
ENV PYTHON_PIP_VERSION 8.1.2
|
||||
|
||||
RUN set -ex \
|
||||
&& apk add --no-cache --virtual .fetch-deps curl gnupg \
|
||||
&& apk add --no-cache --virtual .fetch-deps curl gnupg tar xz \
|
||||
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz \
|
||||
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc \
|
||||
&& export GNUPGHOME="$(mktemp -d)" \
|
||||
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
|
||||
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
|
||||
&& rm -r "$GNUPGHOME" python.tar.xz.asc \
|
||||
&& mkdir -p /usr/src \
|
||||
&& tar -xJC /usr/src -f python.tar.xz \
|
||||
&& mv "/usr/src/Python-$PYTHON_VERSION" /usr/src/python \
|
||||
&& mkdir -p /usr/src/python \
|
||||
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
|
||||
&& rm python.tar.xz \
|
||||
&& apk del .fetch-deps \
|
||||
\
|
||||
|
@ -40,7 +39,9 @@ RUN set -ex \
|
|||
xz-dev \
|
||||
zlib-dev \
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(getconf _NPROCESSORS_ONLN) \
|
||||
&& make install \
|
||||
&& pip3 install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION \
|
||||
|
|
|
@ -48,7 +48,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -27,7 +27,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -27,7 +27,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -13,16 +13,15 @@ ENV PYTHON_VERSION 3.5.2
|
|||
ENV PYTHON_PIP_VERSION 8.1.2
|
||||
|
||||
RUN set -ex \
|
||||
&& apk add --no-cache --virtual .fetch-deps curl gnupg \
|
||||
&& apk add --no-cache --virtual .fetch-deps curl gnupg tar xz \
|
||||
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz \
|
||||
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc \
|
||||
&& export GNUPGHOME="$(mktemp -d)" \
|
||||
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
|
||||
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
|
||||
&& rm -r "$GNUPGHOME" python.tar.xz.asc \
|
||||
&& mkdir -p /usr/src \
|
||||
&& tar -xJC /usr/src -f python.tar.xz \
|
||||
&& mv "/usr/src/Python-$PYTHON_VERSION" /usr/src/python \
|
||||
&& mkdir -p /usr/src/python \
|
||||
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
|
||||
&& rm python.tar.xz \
|
||||
&& apk del .fetch-deps \
|
||||
\
|
||||
|
@ -40,7 +39,9 @@ RUN set -ex \
|
|||
xz-dev \
|
||||
zlib-dev \
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(getconf _NPROCESSORS_ONLN) \
|
||||
&& make install \
|
||||
&& pip3 install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION \
|
||||
|
|
|
@ -48,7 +48,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -27,7 +27,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
|
@ -13,16 +13,15 @@ ENV PYTHON_VERSION 3.6.0a2
|
|||
ENV PYTHON_PIP_VERSION 8.1.2
|
||||
|
||||
RUN set -ex \
|
||||
&& apk add --no-cache --virtual .fetch-deps curl gnupg \
|
||||
&& apk add --no-cache --virtual .fetch-deps curl gnupg tar xz \
|
||||
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz \
|
||||
&& curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc \
|
||||
&& export GNUPGHOME="$(mktemp -d)" \
|
||||
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEY" \
|
||||
&& gpg --batch --verify python.tar.xz.asc python.tar.xz \
|
||||
&& rm -r "$GNUPGHOME" python.tar.xz.asc \
|
||||
&& mkdir -p /usr/src \
|
||||
&& tar -xJC /usr/src -f python.tar.xz \
|
||||
&& mv "/usr/src/Python-$PYTHON_VERSION" /usr/src/python \
|
||||
&& mkdir -p /usr/src/python \
|
||||
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
|
||||
&& rm python.tar.xz \
|
||||
&& apk del .fetch-deps \
|
||||
\
|
||||
|
@ -40,7 +39,9 @@ RUN set -ex \
|
|||
xz-dev \
|
||||
zlib-dev \
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(getconf _NPROCESSORS_ONLN) \
|
||||
&& make install \
|
||||
&& pip3 install --no-cache-dir --upgrade pip==$PYTHON_PIP_VERSION \
|
||||
|
|
|
@ -48,7 +48,9 @@ RUN set -ex \
|
|||
&& rm python.tar.xz \
|
||||
\
|
||||
&& cd /usr/src/python \
|
||||
&& ./configure --enable-shared --enable-unicode=ucs4 \
|
||||
&& ./configure \
|
||||
--enable-shared \
|
||||
--enable-unicode=ucs4 \
|
||||
&& make -j$(nproc) \
|
||||
&& make install \
|
||||
&& ldconfig \
|
||||
|
|
Loading…
Reference in New Issue