mirror of
https://github.com/jupyter/notebook.git
synced 2025-02-23 12:49:41 +08:00
Dockerfile: Turns out a copy of python is now packaged with this image. However, it blocks us from getting the development requirements that we want. As a result, we simply must purge this as our first step. [ci skip]
This commit is contained in:
parent
14c4103694
commit
fdfacb9aeb
@ -13,6 +13,15 @@ ENV LANG en_US.UTF-8
|
|||||||
ENV LC_ALL en_US.UTF-8
|
ENV LC_ALL en_US.UTF-8
|
||||||
ENV PYTHONIOENCODING UTF-8
|
ENV PYTHONIOENCODING UTF-8
|
||||||
|
|
||||||
|
# Remove preinstalled copy of python that blocks are ability to install development python.
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get remove -yq \
|
||||||
|
python3-minimal \
|
||||||
|
python3.4 \
|
||||||
|
python3.4-minimal \
|
||||||
|
libpython3-stdlib \
|
||||||
|
libpython3.4-stdlib \
|
||||||
|
libpython3.4-minimal
|
||||||
|
|
||||||
# Python binary and source dependencies
|
# Python binary and source dependencies
|
||||||
RUN apt-get update -qq && \
|
RUN apt-get update -qq && \
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
|
DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
|
||||||
|
Loading…
Reference in New Issue
Block a user