From 96dc413bfe19289fd0ea6664dacfe720c6563c13 Mon Sep 17 00:00:00 2001 From: Tobias Date: Wed, 16 Jul 2025 11:35:32 +0200 Subject: [PATCH] Most things are setup --- Dockerfile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 33c9bfa..6e2f3b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,12 @@ FROM library/fedora:latest -RUN dnf install neovim npm gcc ansible ansible-lint ripgrep ShellCheck git tmux -y -RUN useradd -ms /bin/bash user -RUN git clone https://git.nopants.dk/shell/neovim_config.git /root/.config/nvim - +RUN dnf install neovim npm gcc ansible ansible-lint ripgrep ShellCheck unzip git tmux -y +RUN useradd -ms /bin/bash bobby +USER bobby +WORKDIR /home/bobby/ +RUN git clone https://git.nopants.dk/shell/neovim_config.git /home/bobby/.config/nvim +RUN git clone https://git.nopants.dk/shell/tmux_config.git /home/bobby/Documents/tmux_config +RUN mv /home/bobby/Documents/tmux_config/tmux.conf /home/bobby/.tmux.conf +USER root +RUN cp /home/bobby/Documents/tmux_config/tmux-script /bin/. +USER bobby