mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-05 00:41:44 +05:30
- 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.
15 lines
290 B
Docker
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" ]
|