Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions containers/underthecovers/base/Build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN dpkg --add-architecture i386 && \
# This was inspired by
# https://github.com/jupyter/docker-stacks/blob/b186ce5fea6aa9af23fb74167dca52908cb28d71/scipy-notebook/Dockerfile

# get and build gdb form source so that we have a current version >10 that support more advanced tui functionality
# get and build gdb form source so that we have a current version >10 that support more advanced tui functionality
RUN if [[ -n "${GDB_BUILD_SRC}" ]] ; then \
cd /tmp && \
wget http://ftp.gnu.org/gnu/gdb/${GDB_BUILD_SRC}.tar.gz && \
Expand All @@ -53,9 +53,9 @@ RUN if [[ -n "${GDB_BUILD_SRC}" ]] ; then \
make -j 4 && make install && \
cd /tmp && \
rm -rf ${GDB_BUILD_SRC} && rm ${GDB_BUILD_SRC}.tar.gz ; \
fi
fi



USER ${NB_UID}

# sometimes there are problems with the existing version of installed python packages
Expand Down Expand Up @@ -89,10 +89,13 @@ RUN for ext in ${JUPYTER_DISABLE_EXTENSIONS} ; do \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"


USER root
# copy overrides.json
COPY settings ${CONDA_DIR}/share/jupyter/lab/settings
RUN chmod 775 ${CONDA_DIR}/share/jupyter/lab/settings && \
fix-permissions ${CONDA_DIR}/share/jupyter/lab/settings

USER root

# we want the container to feel more like a fully fledged system so we are pulling the trigger and unminimizing it
RUN [[ $UNMIN == "yes" ]] && yes | unminimize || true
Expand Down
2 changes: 1 addition & 1 deletion containers/underthecovers/base/customization_name
Original file line number Diff line number Diff line change
@@ -1 +1 @@
base-ope-image
ucsls-image