Created
September 26, 2019 23:32
-
-
Save 100daysofdevops/816402ae0ac165df6e25fe0c71e4a660 to your computer and use it in GitHub Desktop.
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 -t mytestbusybox . | |
| Sending build context to Docker daemon 2.56kB | |
| Step 1/3 : FROM busybox | |
| ---> 19485c79a9bb | |
| Step 2/3 : ADD test.txt /tmp | |
| ---> 691ea295ef52 | |
| Step 3/3 : CMD ["sh"] | |
| ---> Running in 41a3f8bb1425 | |
| Removing intermediate container 41a3f8bb1425 | |
| ---> 02a0828a0556 | |
| Successfully built 02a0828a0556 | |
| Successfully tagged mytestbusybox:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment