Spaces:
Paused
Paused
conda install nb_conda_kernels
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -77,7 +77,7 @@ RUN --mount=target=/root/on_startup.sh,source=on_startup.sh,readwrite \
|
|
| 77 |
bash /root/on_startup.sh
|
| 78 |
|
| 79 |
RUN mkdir /data && chown user:user /data
|
| 80 |
-
RUN mkdir /data/
|
| 81 |
#######################################
|
| 82 |
# End root user section
|
| 83 |
#######################################
|
|
@@ -95,8 +95,10 @@ SHELL ["conda", "run", "--no-capture-output", "-n", "chemprop_env", "/bin/bash",
|
|
| 95 |
|
| 96 |
# Follow the installation instructions then clear the cache
|
| 97 |
ADD chemprop chemprop
|
|
|
|
| 98 |
ADD LICENSE.txt pyproject.toml README.md ./
|
| 99 |
RUN conda install pytorch cpuonly -c pytorch && \
|
|
|
|
| 100 |
conda clean --all --yes && \
|
| 101 |
python -m pip install . && \
|
| 102 |
python -m pip cache purge
|
|
|
|
| 77 |
bash /root/on_startup.sh
|
| 78 |
|
| 79 |
RUN mkdir /data && chown user:user /data
|
| 80 |
+
RUN mkdir /data/chemprop_nbs && chown user:user /data/chemprop_nbs
|
| 81 |
#######################################
|
| 82 |
# End root user section
|
| 83 |
#######################################
|
|
|
|
| 95 |
|
| 96 |
# Follow the installation instructions then clear the cache
|
| 97 |
ADD chemprop chemprop
|
| 98 |
+
ADD jupyter_examples /data/chemprop_nbs
|
| 99 |
ADD LICENSE.txt pyproject.toml README.md ./
|
| 100 |
RUN conda install pytorch cpuonly -c pytorch && \
|
| 101 |
+
conda install nb_conda_kernels && \
|
| 102 |
conda clean --all --yes && \
|
| 103 |
python -m pip install . && \
|
| 104 |
python -m pip cache purge
|