Files
dotfiles/Dockerfile
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

15 lines
290 B
Docker

#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" ]