Skip to content

Commit 2602555

Browse files
authored
Update Dockerfile
fixing sqlite version, avoid downgrading caused by r-sf flag
1 parent a97f239 commit 2602555

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

images/datascience-notebook/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,8 @@ RUN mamba install -c conda-forge jupyterhub=$JUPYTERHUB_VERSION jupyter_server=$
8888
fix-permissions /home/$NB_USER && \
8989
mamba clean --all
9090

91-
# Disable the jupyterlab extensions manager
92-
RUN jupyter labextension disable @jupyterlab/extensionmanager-extension
93-
9491
# Install R packages
95-
RUN mamba install -c conda-forge r-markdown r-covr r-git2r r-crosstalk r-dt r-sf -y && \
92+
RUN mamba install -c conda-forge r-markdown r-covr r-git2r r-crosstalk r-dt r-sf r-units sqlite>=3.45 -y && \
9693
fix-permissions $CONDA_DIR && \
9794
fix-permissions /home/$NB_USER && \
9895
mamba clean -a -y
@@ -102,6 +99,9 @@ RUN /usr/share/datahub/scripts/install-python-all.sh && \
10299
chown -R jovyan:users /opt/conda/etc/jupyter/nbconfig && \
103100
chmod -R +r /opt/conda/etc/jupyter/nbconfig
104101

102+
# Disable the jupyterlab extensions manager
103+
RUN jupyter labextension disable @jupyterlab/extensionmanager-extension
104+
105105
# Cleanup
106106
## nbgrader requires these variables set to just run the notebook server
107107
ENV NBGRADER_COURSEID="NA"

0 commit comments

Comments
 (0)