Last active
August 29, 2015 13:56
-
-
Save tianon/9168215 to your computer and use it in GitHub Desktop.
"docker build" output mangling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM busybox | |
RUN echo -n '[ ] testing...' && sleep 5 && echo -e 'done.\r[✓]' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# for about 5 seconds: | |
[ ] testing... | |
# then: | |
[✓] testing...done. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ docker build --no-cache --rm git://gist.github.com/9168215.git | |
Step 0 : FROM busybox | |
---> 769b9341d937 | |
Step 1 : RUN echo -n '[ ] testing...' && sleep 5 && echo -e 'done.\r[✓]' | |
---> Running in cc3369371e19 | |
[✓]e. | |
---> ac50e5cf83b3 | |
Successfully built ac50e5cf83b3 | |
Removing intermediate container cc3369371e19 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment