Skip to content
Snippets Groups Projects
Commit 2853852d authored by Florian Deuerlein's avatar Florian Deuerlein
Browse files

Disable core dumps

parent 4575b4be
No related branches found
No related tags found
No related merge requests found
Pipeline #22040 passed with stage
in 15 minutes and 41 seconds
......@@ -101,7 +101,7 @@ RUN R --slave -e "install.packages('IRkernel')"
RUN R --slave -e "IRkernel::installspec(name = 'ir363', displayname = 'R 3.6.3')"
# disable core dumps
RUN ulimit -c 0
RUN echo "* - core 0" >> /etc/security/limits.conf
# fix permissions so NB_USER has permissions to run notebooks and install packages
COPY base/fix-permissions /usr/local/bin/fix-permissions
......
......@@ -10,4 +10,6 @@ envsubst < /tmp/group.template > /tmp/group
export LD_PRELOAD=libnss_wrapper.so
export NSS_WRAPPER_PASSWD=/tmp/passwd
export NSS_WRAPPER_GROUP=/tmp/group
# Disable core dumps
ulimit -c 0
exec jupyter labhub --NotebookApp.default_url=/lab --config=/opt/app-root/etc/jupyter_notebook_config.py $@
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment