From 2296bdc058748784fdbc0d305274a103b18c1f66 Mon Sep 17 00:00:00 2001 From: Moghedrin Date: Mon, 26 Jan 2015 16:57:31 -0700 Subject: [PATCH] Add gpg validation for python 2.7 --- 2.7/Dockerfile | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/2.7/Dockerfile b/2.7/Dockerfile index 082f2dc..19908cc 100644 --- a/2.7/Dockerfile +++ b/2.7/Dockerfile @@ -9,10 +9,29 @@ ENV LANG C.UTF-8 ENV PYTHON_VERSION 2.7.9 +#Keys from https://www.python.org/downloads/ +RUN gpg --keyserver pool.sks-keyservers.net --recv-keys \ + 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D \ + 12EF3DC38047DA382D18A5B999CDEA9DA4135B38 \ + 26DEA9D4613391EF3E25C9FF0A5B101836580288 \ + 2BA0DB82515BBB9EFFAC71C5C9BE28DEE6DF025C \ + 531F072D39700991925FED0C0EDDC5F26A45C816 \ + 8417157EDBE73D9EAC1E539B126EB563A74B06BF \ + 97FC712E4C024BBEA48A61ED3A5CA953F73C700D \ + C9B104B3DD3AA72D7CCB1066FB9921286F5E1540 \ + C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF \ + CBC547978A3964D14B9AB36A6AF053F07D9DC8D2 \ + DBBF2EEBF925FAADCF1F3FFFD9866941EA5BBD71 \ + 7123BC13ED9D77D5 +#Short version of the key, due to the fact that HKP keyservers do not support v3 fingerprints + RUN set -x \ && mkdir -p /usr/src/python \ - && curl -SL "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz" \ - | tar -xJC /usr/src/python --strip-components=1 \ + && curl -SL "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz" -o "Python-$PYTHON_VERSION.tar.xz" \ + && curl -SL "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz.asc" -o "Python-$PYTHON_VERSION.tar.xz.asc" \ + && gpg --verify "Python-$PYTHON_VERSION.tar.xz.asc" \ + && tar -xJC /usr/src/python --strip-components=1 -f "Python-$PYTHON_VERSION.tar.xz" \ + && rm "Python-$PYTHON_VERSION.tar.xz"* \ && cd /usr/src/python \ && ./configure --enable-shared \ && make -j$(nproc) \