You've already forked Docker_Podman_Dev_container
11 lines
600 B
Docker
11 lines
600 B
Docker
FROM library/fedora:latest
|
|
|
|
RUN dnf install neovim npm gcc ansible ansible-lint ripgrep ShellCheck unzip git tmux zsh zsh-syntax-highlighting -y
|
|
WORKDIR /data/
|
|
RUN git clone https://git.nopants.dk/shell/neovim_config.git /root/.config/nvim
|
|
RUN git clone https://git.nopants.dk/shell/tmux_config.git /data/Documents/tmux_config
|
|
RUN git clone https://git.nopants.dk/shell/Tobias-zsh-shell.git /data/Documents/Tobias-zsh-shell
|
|
RUN mv /data/Documents/Tobias-zsh-shell/zshrc /root/.zshrc
|
|
RUN mv /data/Documents/tmux_config/tmux.conf /root/.tmux.conf
|
|
RUN cp /data/Documents/tmux_config/tmux-script /bin/.
|