From 748f438718de4f28e2ee4f26829e9412d48b00c4 Mon Sep 17 00:00:00 2001 From: Brian Seymour Date: Sat, 20 Oct 2018 12:20:12 -0500 Subject: [PATCH] raise docker limits --- docker/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 34af9a4..1dddc0e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,10 +4,10 @@ WORKDIR /tmp 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 nofile 256' >> /etc/security/limits.conf -RUN echo 'runner hard nofile 256' >> /etc/security/limits.conf +RUN echo 'runner soft nproc 256' >> /etc/security/limits.conf +RUN echo 'runner hard nproc 256' >> /etc/security/limits.conf +RUN echo 'runner soft nofile 4096' >> /etc/security/limits.conf +RUN echo 'runner hard nofile 4096' >> /etc/security/limits.conf RUN sed -i 's/http:\/\/archive.ubuntu.com\/ubuntu\//http:\/\/mirror.math.princeton.edu\/pub\/ubuntu\//' /etc/apt/sources.list RUN apt-get update && \