Skip to content

Instantly share code, notes, and snippets.

@bruno-brant
Last active August 11, 2019 22:37
Show Gist options
  • Save bruno-brant/e119da3713a657036ff7e3446d98176a to your computer and use it in GitHub Desktop.
Save bruno-brant/e119da3713a657036ff7e3446d98176a to your computer and use it in GitHub Desktop.
alpine: add curl, telnet ect

Tooling in alpine builds

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?

apk update						      # update the local registry
apk add busybox-extras			# install telnet and some other basic tools
apk add curl

That's it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment