feat(install): Script to automate application installation

- Install all required applications to setup a personal
machine with just a single command
- TODO: Some applications, available only with ppa aren't yet configured
  to be installed. Next time.
This commit is contained in:
Pratik Tripathy
2024-09-09 18:06:08 +05:30
parent df9c12edee
commit 7afa1d47bf
12 changed files with 261 additions and 2 deletions

11
scripts/docker-test.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
# script to build and run docker
main() {
docker container prune -f && echo "Removed old Docker containers"
docker build -f ../Dockerfile -t dotfile-install-test:latest .. && echo "Docker build success"
docker run -it dotfile-install-test:latest
}
main "$@"