Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -93,6 +93,10 @@ RUN curl -sLo ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-py31
|
|
| 93 |
&& rm ~/miniconda.sh \
|
| 94 |
&& conda clean -ya
|
| 95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
WORKDIR $HOME/app
|
| 97 |
|
| 98 |
#######################################
|
|
|
|
| 93 |
&& rm ~/miniconda.sh \
|
| 94 |
&& conda clean -ya
|
| 95 |
|
| 96 |
+
RUN conda install -y jupyter ipykernel && \
|
| 97 |
+
python -m ipykernel install --user --name=conda-env --display-name "Python 3 (conda)" && \
|
| 98 |
+
conda clean -ya
|
| 99 |
+
|
| 100 |
WORKDIR $HOME/app
|
| 101 |
|
| 102 |
#######################################
|