Skip to content

Commit cefbca1

Browse files
authored
Update Dockerfile
Attempt to fix the read-only notebook error
1 parent f2e7b42 commit cefbca1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ RUN apt-get update && \
3030
apt-get autoclean && \
3131
apt-get clean && \
3232
apt-get autoremove
33-
USER ${NB_UID}
33+
34+
USER jovyan
3435

3536
# Install Conda Packages (Plotly, SageMath)
3637
RUN mamba create --yes -n sage sage python=3.11 && \
@@ -51,7 +52,7 @@ RUN R -e 'require(devtools); \
5152
install_version("ggiraphExtra", repos = "http://cran.us.r-project.org", quiet = TRUE); \
5253
install_version("lisp", version = "0.1", repos = "http://cran.us.r-project.org", quiet = TRUE); \
5354
install_version("translate", version = "0.1.2", repos = "http://cran.us.r-project.org", quiet = TRUE)'
54-
55+
5556
# Install R packages
5657
RUN mamba install --yes -c conda-forge \
5758
'r-stargazer' \

0 commit comments

Comments
 (0)