Skip to content

Instantly share code, notes, and snippets.

@vbatts
Created January 15, 2015 16:39
Show Gist options
  • Save vbatts/dc1aa648bde5221ec799 to your computer and use it in GitHub Desktop.
Save vbatts/dc1aa648bde5221ec799 to your computer and use it in GitHub Desktop.
FROM busybox
RUN dd if=/dev/urandom of=/dev/null bs=1024k count=5
#!/bin/bash
set -e
set -x
DOCKER=${DOCKER:-docker}
for i in {0..50}
do
${DOCKER} build --no-cache . &
${DOCKER} build --no-cache .
wait $(jobs -p)
echo $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment