Files
dotfiles/scripts/docker-test.sh
Pratik Tripathy 7afa1d47bf 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.
2024-09-09 23:06:42 +05:30

12 lines
277 B
Bash
Executable File

#!/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 "$@"