mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
- Instead of manually adding gpg files or using `add-apt-repository` for common applications use `extrepo` - package-list-os: Add: foliate, ghostscript, imagemagick, kitty, xsel - package-list-os: Remove: smplayer - test-script: use `podman` instead of `docker` - Dockerfile: Remove older OSes
12 lines
327 B
Bash
Executable File
12 lines
327 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Prune, build and run docker
|
|
main() {
|
|
cd ../.. # change docker context to dotfile repo
|
|
podman container prune -f && echo "Removed old Docker containers"
|
|
podman build -t dotfile-setup:latest -f scripts/test/Dockerfile . && echo "Docker build success"
|
|
podman run -it dotfile-setup:latest
|
|
}
|
|
|
|
main "$@"
|