Skip to content
Snippets Groups Projects
Commit 665b7f72 authored by Andrey  ARISTOV's avatar Andrey ARISTOV
Browse files

test basic install of jupyter

parent 58bd5173
No related branches found
No related tags found
No related merge requests found
FROM jupyter:jupyter FROM conda/miniconda3
WORKDIR /root #WORKDIR /home/pub
COPY . . #USER pub
RUN python -V &&\ #COPY . .
python -m pip install -r requirements.txt &&\ EXPOSE 8888
python setup.py install RUN /bin/bash && python -V &&\
CMD python -V && jupyter lab conda create -n py38 python=3.8 &&\
\ No newline at end of file conda init bash &&\
source activate py38 &&\
conda install -c anaconda py-opencv &&\
conda install jupyterlab
# python -m pip install jupyterlab
# python -m ipykernel install --user --name=py38 &&\
# python -m pip install -r requirements.txt &&\
# python -m pip install .
CMD ["jupyter", "lab"]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment