1
0

6 lines
134 B
Docker
Raw Permalink Normal View History

2019-06-15 15:31:01 -06:00
FROM busybox
RUN seq 1 10000 | while read -r e; do echo -ne 'e'; done; echo e;
CMD strings /dev/urandom | grep -oE 'e' | tr -d '\n'