Use "dpkg-divert" instead of "purge" to avoid Debian's Python

This commit is contained in:
Tianon Gravi 2016-07-22 12:58:33 -07:00
parent 3e451a9b89
commit a819c92949
13 changed files with 112 additions and 31 deletions

View File

@ -1,7 +1,19 @@
FROM buildpack-deps:jessie
# remove several traces of debian python
RUN apt-get purge -y python.*
# divert many traces of Debian Python (so that they are not used by mistake)
# https://bugs.debian.org/33263 :(
RUN set -ex \
&& for bits in \
# /etc/python* \
/usr/bin/*2to3* \
/usr/bin/*python* \
/usr/bin/pdb* \
/usr/bin/py* \
# /usr/lib/python* \
# /usr/share/python \
; do \
dpkg-divert --rename "$bits"; \
done
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.

View File

@ -1,8 +1,5 @@
FROM debian:jessie
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8

View File

@ -1,7 +1,19 @@
FROM buildpack-deps:wheezy
# remove several traces of debian python
RUN apt-get purge -y python.*
# divert many traces of Debian Python (so that they are not used by mistake)
# https://bugs.debian.org/33263 :(
RUN set -ex \
&& for bits in \
# /etc/python* \
/usr/bin/*2to3* \
/usr/bin/*python* \
/usr/bin/pdb* \
/usr/bin/py* \
# /usr/lib/python* \
# /usr/share/python \
; do \
dpkg-divert --rename "$bits"; \
done
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.

View File

@ -1,7 +1,19 @@
FROM buildpack-deps:jessie
# remove several traces of debian python
RUN apt-get purge -y python.*
# divert many traces of Debian Python (so that they are not used by mistake)
# https://bugs.debian.org/33263 :(
RUN set -ex \
&& for bits in \
# /etc/python* \
/usr/bin/*2to3* \
/usr/bin/*python* \
/usr/bin/pdb* \
/usr/bin/py* \
# /usr/lib/python* \
# /usr/share/python \
; do \
dpkg-divert --rename "$bits"; \
done
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.

View File

@ -1,8 +1,5 @@
FROM debian:jessie
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8

View File

@ -1,7 +1,19 @@
FROM buildpack-deps:wheezy
# remove several traces of debian python
RUN apt-get purge -y python.*
# divert many traces of Debian Python (so that they are not used by mistake)
# https://bugs.debian.org/33263 :(
RUN set -ex \
&& for bits in \
# /etc/python* \
/usr/bin/*2to3* \
/usr/bin/*python* \
/usr/bin/pdb* \
/usr/bin/py* \
# /usr/lib/python* \
# /usr/share/python \
; do \
dpkg-divert --rename "$bits"; \
done
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.

View File

@ -1,7 +1,19 @@
FROM buildpack-deps:jessie
# remove several traces of debian python
RUN apt-get purge -y python.*
# divert many traces of Debian Python (so that they are not used by mistake)
# https://bugs.debian.org/33263 :(
RUN set -ex \
&& for bits in \
# /etc/python* \
/usr/bin/*2to3* \
/usr/bin/*python* \
/usr/bin/pdb* \
/usr/bin/py* \
# /usr/lib/python* \
# /usr/share/python \
; do \
dpkg-divert --rename "$bits"; \
done
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.

View File

@ -1,8 +1,5 @@
FROM debian:jessie
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8

View File

@ -1,7 +1,19 @@
FROM buildpack-deps:wheezy
# remove several traces of debian python
RUN apt-get purge -y python.*
# divert many traces of Debian Python (so that they are not used by mistake)
# https://bugs.debian.org/33263 :(
RUN set -ex \
&& for bits in \
# /etc/python* \
/usr/bin/*2to3* \
/usr/bin/*python* \
/usr/bin/pdb* \
/usr/bin/py* \
# /usr/lib/python* \
# /usr/share/python \
; do \
dpkg-divert --rename "$bits"; \
done
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.

View File

@ -1,7 +1,19 @@
FROM buildpack-deps:jessie
# remove several traces of debian python
RUN apt-get purge -y python.*
# divert many traces of Debian Python (so that they are not used by mistake)
# https://bugs.debian.org/33263 :(
RUN set -ex \
&& for bits in \
# /etc/python* \
/usr/bin/*2to3* \
/usr/bin/*python* \
/usr/bin/pdb* \
/usr/bin/py* \
# /usr/lib/python* \
# /usr/share/python \
; do \
dpkg-divert --rename "$bits"; \
done
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.

View File

@ -1,8 +1,5 @@
FROM debian:jessie
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8

View File

@ -1,7 +1,19 @@
FROM buildpack-deps:jessie
# remove several traces of debian python
RUN apt-get purge -y python.*
# divert many traces of Debian Python (so that they are not used by mistake)
# https://bugs.debian.org/33263 :(
RUN set -ex \
&& for bits in \
# /etc/python* \
/usr/bin/*2to3* \
/usr/bin/*python* \
/usr/bin/pdb* \
/usr/bin/py* \
# /usr/lib/python* \
# /usr/share/python \
; do \
dpkg-divert --rename "$bits"; \
done
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.

View File

@ -1,8 +1,5 @@
FROM debian:jessie
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8