Skip to content

Instantly share code, notes, and snippets.

@nrashok
Forked from bruno-brant/alpine-tools.md
Created December 18, 2024 06:54
Show Gist options
  • Save nrashok/1172f9e47bf02231789cf7203365c99e to your computer and use it in GitHub Desktop.
Save nrashok/1172f9e47bf02231789cf7203365c99e 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