20 lines
570 B
Docker
20 lines
570 B
Docker
FROM debian:trixie-slim
|
|
|
|
RUN apt update && apt install --assume-yes curl zsh fzf zoxide unzip sudo git make stow
|
|
|
|
RUN curl -s https://ohmyposh.dev/install.sh | bash -s -- -d /bin
|
|
RUN useradd -m -G sudo -r -s /usr/bin/zsh debian
|
|
|
|
RUN echo "debian ALL=(ALL:ALL) NOPASSWD:ALL" >> /etc/sudoers
|
|
USER debian
|
|
WORKDIR /home/debian
|
|
COPY ./setupDebian.sh .
|
|
COPY ./neovim.sh .
|
|
COPY ./zellij.sh .
|
|
COPY ./colorscript.sh .
|
|
|
|
RUN bash neovim.sh
|
|
RUN bash zellij.sh
|
|
RUN bash colorscript.sh
|
|
|
|
RUN git clone --recursive --depth=1 https://git.k4li.de/dotfiles/minimal.git /home/pika/dotfiles
|