Skip to content

Commit 6caebd4

Browse files
authored
Merge branch 'master' into cgspatial-notebook
2 parents 9531de0 + 0ce6457 commit 6caebd4

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

base-notebook/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ RUN cd /tmp && \
8484
conda config --system --prepend channels conda-forge && \
8585
conda config --system --set auto_update_conda false && \
8686
conda config --system --set show_channel_urls true && \
87+
conda config --system --set channel_priority strict && \
8788
if [ ! $PYTHON_VERSION = 'default' ]; then conda install --yes python=$PYTHON_VERSION; fi && \
8889
conda list python | grep '^python ' | tr -s ' ' | cut -d '.' -f 1,2 | sed 's/$/.*/' >> $CONDA_DIR/conda-meta/pinned && \
8990
conda install --quiet --yes conda && \
@@ -126,9 +127,7 @@ ENTRYPOINT ["tini", "-g", "--"]
126127
CMD ["start-notebook.sh"]
127128

128129
# Copy local files as late as possible to avoid cache busting
129-
COPY start.sh /usr/local/bin/
130-
COPY start-notebook.sh /usr/local/bin/
131-
COPY start-singleuser.sh /usr/local/bin/
130+
COPY start.sh start-notebook.sh start-singleuser.sh /usr/local/bin/
132131
COPY jupyter_notebook_config.py /etc/jupyter/
133132

134133
# Fix permissions on /etc/jupyter as root

r-notebook/Dockerfile

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,25 @@ USER $NB_UID
2525

2626
# R packages
2727
RUN conda install --quiet --yes \
28-
'r-base=3.6.1' \
28+
'r-base=3.6.2' \
2929
'r-caret=6.0*' \
3030
'r-crayon=1.3*' \
31-
'r-devtools=2.0*' \
32-
'r-forecast=8.7*' \
33-
'r-hexbin=1.27*' \
34-
'r-htmltools=0.3*' \
35-
'r-htmlwidgets=1.3*' \
36-
'r-irkernel=1.0*' \
31+
'r-devtools=2.2*' \
32+
'r-forecast=8.11*' \
33+
'r-hexbin=1.28*' \
34+
'r-htmltools=0.4*' \
35+
'r-htmlwidgets=1.5*' \
36+
'r-irkernel=1.1*' \
3737
'r-nycflights13=1.0*' \
3838
'r-plyr=1.8*' \
3939
'r-randomforest=4.6*' \
40-
'r-rcurl=1.95*' \
40+
'r-rcurl=1.98*' \
4141
'r-reshape2=1.4*' \
42-
'r-rmarkdown=1.14*' \
42+
'r-rmarkdown=2.1*' \
4343
'r-rodbc=1.3*' \
4444
'r-rsqlite=2.1*' \
45-
'r-shiny=1.3*' \
46-
'r-sparklyr=1.0*' \
47-
'r-tidyverse=1.2*' \
45+
'r-shiny=1.4*' \
46+
'r-tidyverse=1.3*' \
4847
'unixodbc=2.3.*' \
4948
&& \
5049
conda clean --all -f -y && \

0 commit comments

Comments
 (0)