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

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
#FROM kdeneon/plasma
FROM debian:11-slim
#FROM debian:12-slim
#FROM ubuntu:20.04
#FROM ubuntu:22.04
#FROM ubuntu:22.10
#FROM ubuntu:23.04
#TODO: Fedora
#TODO: openSUSE
#TODO: Arch
WORKDIR /scripts
RUN apt-get update -y && apt-get install sudo -y
COPY scripts .
CMD [ "bash", "install.sh" ]