gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-deployment] branch master updated: work around docker perf bug


From: gnunet
Subject: [taler-deployment] branch master updated: work around docker perf bug
Date: Thu, 07 Dec 2023 18:09:19 +0100

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new d544022  work around docker perf bug
d544022 is described below

commit d544022d9a67a60af59839875ead31d5367cbf93
Author: Florian Dold <florian@dold.me>
AuthorDate: Thu Dec 7 18:09:15 2023 +0100

    work around docker perf bug
---
 packaging/debian-docker/run.sh | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/packaging/debian-docker/run.sh b/packaging/debian-docker/run.sh
index a6df3f0..928abd9 100755
--- a/packaging/debian-docker/run.sh
+++ b/packaging/debian-docker/run.sh
@@ -1,7 +1,11 @@
 #!/bin/sh
 set -eu
 CONTAINER=$USER/debbuilder:latest
-docker build -t $CONTAINER .
+
+# If we don't specify the ulimit here, fakeroot is extremely slow.
+# See https://github.com/moby/moby/issues/45436
+docker build --ulimit "nofile=1024:1048576" -t $CONTAINER .
+
 rm -rf dist
 mkdir dist
 docker run --read-only $CONTAINER sleep 100 &

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]