-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from toolbx-images/alpine-3.21
alpine: add 3.21
- Loading branch information
Showing
4 changed files
with
60 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM docker.io/library/alpine:3.21 | ||
|
||
LABEL com.github.containers.toolbox="true" \ | ||
name="alpine-toolbox" \ | ||
version="3.21" \ | ||
usage="This image is meant to be used with the toolbox command" \ | ||
summary="Base image for creating Alpine Linux toolbox containers" \ | ||
maintainer="Jorge O. Castro <jorge.castro@gmail.com>" | ||
|
||
# Install extra packages | ||
COPY extra-packages / | ||
RUN apk update && \ | ||
apk upgrade && \ | ||
cat /extra-packages | xargs apk add | ||
RUN rm /extra-packages | ||
|
||
# Enable password less sudo | ||
RUN echo "%wheel ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/toolbox | ||
|
||
# Clear out /media | ||
RUN rm -rf /media |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
alpine-base | ||
bash | ||
bash-completion | ||
bc | ||
bzip2 | ||
coreutils | ||
curl | ||
diffutils | ||
docs | ||
findutils | ||
gcompat | ||
git | ||
gnupg | ||
iproute2 | ||
iputils | ||
keyutils | ||
less | ||
libcap | ||
man-pages | ||
mandoc | ||
musl-utils | ||
ncurses-terminfo | ||
net-tools | ||
openssh-client | ||
procps | ||
rsync | ||
shadow | ||
sudo | ||
tar | ||
tcpdump | ||
tree | ||
unzip | ||
util-linux | ||
wget | ||
which | ||
xz | ||
zip |
This file contains 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