Skip to content

Commit a862f35

Browse files
committed
Use /opt/conda path as system-wide
1 parent 9f907c3 commit a862f35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ RUN apt-get update && \
6464
rm -rf /var/lib/apt/lists/*
6565

6666
# System-wide Jupyter Server config
67-
COPY docker/jupyter_server_config.py /etc/jupyter/
67+
COPY docker/jupyter_server_config.py /opt/conda/etc/jupyter/
6868

6969
# Jupyter Lab settings
7070
RUN mkdir -p /opt/conda/share/jupyter/lab/settings
7171
COPY docker/overrides.json /opt/conda/share/jupyter/lab/settings/
7272

7373
# System-wide IPython profile config
74-
RUN mkdir -p /etc/ipython/profile_default
75-
COPY docker/ipython_config.py /etc/ipython/profile_default/
74+
RUN mkdir -p /opt/conda/etc/ipython
75+
COPY docker/ipython_config.py /opt/conda/etc/ipython/
7676

7777
# Switch back to the default notebook user
7878
USER ${NB_UID}

0 commit comments

Comments
 (0)