addet some distros

This commit is contained in:
pika 2025-05-22 11:27:00 +02:00
parent 2c7bac4edd
commit 5c07745407
15 changed files with 1374 additions and 202 deletions

24
ubuntu/Dockerfile Normal file
View file

@ -0,0 +1,24 @@
FROM ubuntu:noble
RUN apt update && apt install --assume-yes curl zsh fzf zoxide unzip sudo git make stow
COPY ./.src/colorscript.sh .
COPY ./.src/neovim.sh .
COPY ./.src/omp.sh .
RUN bash ./omp.sh -d /bin && rm ./omp.sh
RUN bash colorscript.sh && rm colorscript.sh
RUN bash neovim.sh && rm neovim.sh
# RUN useradd -m -G sudo -r -s /usr/bin/zsh ubuntu
RUN usermod -aG sudo ubuntu
RUN echo "ubuntu ALL=(ALL:ALL) NOPASSWD:ALL" >> /etc/sudoers
USER ubuntu
WORKDIR /home/ubuntu
COPY .src/setup.sh .
RUN git clone --recursive --depth=1 https://git.k4li.de/dotfiles/minimal.git /home/ubuntu/dotfiles
ENTRYPOINT /usr/bin/zsh