debug(CI): print limits from Dockerfile

This commit is contained in:
Sven Feyerabend 2021-05-25 18:17:40 +02:00
parent 39bb94ab95
commit ab232e66b6
2 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@ before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
- source environment
- ulimit -n 999999
- ulimit
- ulimit -n
- lsof | wc -l
- sysctl fs.file-max
# - docker pull "$CI_REGISTRY_IMAGE" || true

View File

@ -4,6 +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
FROM $BASE