update limits

This commit is contained in:
Brian Seymour 2018-09-21 12:05:55 -05:00
parent af5a4f7cee
commit 548e69d3f3
2 changed files with 17 additions and 2 deletions

View file

@ -11,8 +11,10 @@ RUN apt-get -y install golang
RUN useradd -m runner
RUN echo '@runner soft nproc 16' >> /etc/security/limits.conf
RUN echo '@runner hard nproc 16' >> /etc/security/limits.conf
RUN echo 'runner soft nproc 16' >> /etc/security/limits.conf
RUN echo 'runner hard nproc 16' >> /etc/security/limits.conf
RUN echo 'runner soft nofile 128' >> /etc/security/limits.conf
RUN echo 'runner hard nofile 128' >> /etc/security/limits.conf
USER runner
WORKDIR /tmp