anaconda -> data_science (build image w/o anaconda crap, just pip)
This commit is contained in:
@@ -1,8 +1,15 @@
|
|||||||
FROM continuumio/anaconda3
|
FROM python:3.9
|
||||||
|
|
||||||
EXPOSE 8888
|
EXPOSE 8888
|
||||||
|
|
||||||
RUN conda install jupyter -y && \
|
RUN mkdir -p /opt/notebooks
|
||||||
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=''"]
|
ENTRYPOINT ["jupyter", "notebook", "--notebook-dir=/opt/notebooks", "--ip='*'", "--port=8888", "--allow-root", "--NotebookApp.token=''"]
|
||||||
Reference in New Issue
Block a user