-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactor to allow multiple image builds * Don't build fedora-example * Refactor to use scripts and packagelists --------- Co-authored-by: Jorge O. Castro <jorge.castro@gmail.com>
- Loading branch information
1 parent
c9f566d
commit b115bfd
Showing
8 changed files
with
70 additions
and
23 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
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,30 @@ | ||
age | ||
atuin | ||
btop | ||
bat | ||
chezmoi | ||
clipboard | ||
cosign | ||
dbus-x11 | ||
direnv | ||
eza | ||
ffmpeg | ||
fzf | ||
github-cli | ||
helix | ||
just | ||
make | ||
micro | ||
ncdu | ||
ncurses | ||
neovim | ||
npm | ||
plocate | ||
python3 | ||
ripgrep | ||
speedtest-cli | ||
starship | ||
vimdiff | ||
wl-clipboard | ||
zellij | ||
zstd |
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 @@ | ||
helix |
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,8 @@ | ||
#!/bin/sh | ||
|
||
# Symlink distrobox shims | ||
./distrobox-shims.sh | ||
|
||
# Update the container and install packages | ||
apk update && apk upgrade | ||
grep -v '^#' ./boxkit.packages | xargs apk add |
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,8 @@ | ||
#!/bin/sh | ||
|
||
ln -fs /bin/sh /usr/bin/sh | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/docker | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/flatpak | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/podman | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/rpm-ostree | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/transactional-update |
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,8 @@ | ||
#!/bin/sh | ||
|
||
# Symlink distrobox shims | ||
./distrobox-shims.sh | ||
|
||
# Update the container and install packages | ||
dnf update -y | ||
grep -v '^#' ./fedora-example.packages | xargs dnf install -y |