mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +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.
This commit is contained in:
parent
14c4103694
commit
43efd71011
@ -13,6 +13,15 @@ ENV LANG en_US.UTF-8
|
||||
ENV LC_ALL en_US.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
|
||||
RUN apt-get update -qq && \
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
|
||||
|
Loading…
Reference in New Issue
Block a user