post(alpine-binaries): update to alpine:3.15 image

This commit is contained in:
Ming Di Leom 2022-01-08 05:27:30 +00:00
parent c75cec7f05
commit 83f4a6aad5
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 17 additions and 11 deletions

View File

@ -2,14 +2,14 @@
title: Default binaries in Alpine docker image title: Default binaries in Alpine docker image
excerpt: Here is the list of binaries shipped with the Docker image of Alpine Linux. excerpt: Here is the list of binaries shipped with the Docker image of Alpine Linux.
date: 2018-10-10 date: 2018-10-10
updated: 2020-12-18 updated: 2021-01-08
tags: tags:
- linux - linux
- alpine - alpine
- busybox - busybox
--- ---
Here is the list of binaries shipped with the Docker image of Alpine Linux `alpine:3.12` Here is the list of binaries shipped with the Docker image of Alpine Linux `alpine:3.15`.
- acpid - acpid
- add-shell - add-shell
@ -47,7 +47,6 @@ Here is the list of binaries shipped with the Docker image of Alpine Linux `alpi
- clear - clear
- cmp - cmp
- comm - comm
- conspy
- cp - cp
- cpio - cpio
- crond - crond
@ -69,7 +68,6 @@ Here is the list of binaries shipped with the Docker image of Alpine Linux `alpi
- dos2unix - dos2unix
- du - du
- dumpkmap - dumpkmap
- dumpleases
- echo - echo
- ed - ed
- egrep - egrep
@ -85,7 +83,6 @@ Here is the list of binaries shipped with the Docker image of Alpine Linux `alpi
- fbset - fbset
- fbsplash - fbsplash
- fdflush - fdflush
- fdformat
- fdisk - fdisk
- fgrep - fgrep
- find - find
@ -107,7 +104,6 @@ Here is the list of binaries shipped with the Docker image of Alpine Linux `alpi
- gzip - gzip
- halt - halt
- hd - hd
- hdparm
- head - head
- hexdump - hexdump
- hostid - hostid
@ -156,7 +152,6 @@ Here is the list of binaries shipped with the Docker image of Alpine Linux `alpi
- ls - ls
- lsmod - lsmod
- lsof - lsof
- lspci
- lsusb - lsusb
- lzcat - lzcat
- lzma - lzma
@ -212,7 +207,6 @@ Here is the list of binaries shipped with the Docker image of Alpine Linux `alpi
- pkill - pkill
- pmap - pmap
- poweroff - poweroff
- powertop
- printenv - printenv
- printf - printf
- ps - ps
@ -225,7 +219,6 @@ Here is the list of binaries shipped with the Docker image of Alpine Linux `alpi
- rdev - rdev
- readahead - readahead
- readlink - readlink
- readprofile
- realpath - realpath
- reboot - reboot
- reformime - reformime
@ -261,7 +254,6 @@ Here is the list of binaries shipped with the Docker image of Alpine Linux `alpi
- shuf - shuf
- slattach - slattach
- sleep - sleep
- smemcap
- sort - sort
- split - split
- ssl_client - ssl_client
@ -323,7 +315,21 @@ Here is the list of binaries shipped with the Docker image of Alpine Linux `alpi
- whois - whois
- xargs - xargs
- xxd - xxd
- xz
- xzcat - xzcat
- yes - yes
- zcat - zcat
Above list is built using the following command:
{% codeblock script.sh lang:sh https://unix.stackexchange.com/a/120790 source %}
#!/bin/sh
IFS=":"
for i in $PATH
do
if [ -d "$i" ]; then
# -L follows symlinks
find -L "$i" -maxdepth 1 -executable -type f -exec basename {} \; 2> /dev/null || :
fi
done
{% codeblock %}