Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. Tooling in alpine builds
  2. ========================
  3.  
  4. Pretty usual to have to diagnose docker containers based on alpine distros. But the image never comes with basic tools. How do we add it?
  5.  
  6. ```shell
  7. apk update # update the local registry
  8. apk add busybox-extras # install telnet and some other basic tools
  9. apk add curl
  10. ```
  11.  
  12. That's it.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement