debug(CI): more output in Dockerfile

This commit is contained in:
Sven Feyerabend 2021-05-25 20:44:30 +02:00
parent 4719b90997
commit f96f4df6c0
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ FROM nixpkgs/curl as src
ARG LDAP_PLUGIN_URL=https://codeload.github.com/smhaller/ldap-overleaf-sl/tar.gz/master
RUN mkdir /src && cd /src && curl "$LDAP_PLUGIN_URL" | tar -xzf - --strip-components=1
RUN ls /src
RUN lsof |wc -l && ulimit
RUN sysctl fs.file-max && lsof |wc -l && ulimit -n
FROM $BASE