anaconda -> data_science (build image w/o anaconda crap, just pip)

This commit is contained in:
Chris
2022-11-06 09:29:56 +01:00
parent 39c6567e39
commit 9e4f08d550
4 changed files with 10 additions and 3 deletions

View File

@@ -1,8 +1,15 @@
FROM continuumio/anaconda3
FROM python:3.9
EXPOSE 8888
RUN conda install jupyter -y && \
mkdir -p /opt/notebooks
RUN mkdir -p /opt/notebooks
RUN pip install\
jupyter\
matplotlib\
numpy\
pandas\
sklearn\
tensorflow
ENTRYPOINT ["jupyter", "notebook", "--notebook-dir=/opt/notebooks", "--ip='*'", "--port=8888", "--allow-root", "--NotebookApp.token=''"]