reverting needlessly to fedora, fixing nvim plugin installs, and cleanup
This commit is contained in:
parent
da3ea41150
commit
86fd2cff65
1 changed files with 8 additions and 6 deletions
14
Dockerfile
14
Dockerfile
|
@ -1,14 +1,16 @@
|
||||||
FROM debian:latest
|
FROM fedora:latest
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y zsh git neovim tmux stow && apt-get clean
|
RUN dnf install -y zsh git neovim tmux stow python3-pip \
|
||||||
|
&& pip3 install pynvim \
|
||||||
|
&& dnf clean all
|
||||||
|
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
|
|
||||||
RUN git clone https://github.com/amdavidson/dotfiles.git /root/.dotfiles && \
|
RUN git clone https://github.com/amdavidson/dotfiles.git /root/.dotfiles \
|
||||||
cd /root/.dotfiles && \
|
&& cd /root/.dotfiles \
|
||||||
stow -t /root zsh git vim tmux
|
&& stow -t /root zsh git vim tmux
|
||||||
|
|
||||||
RUN vim +"PlugInstall --sync" +qa
|
RUN nvim --headless +"PlugInstall --sync" +qa
|
||||||
|
|
||||||
CMD ["/usr/bin/zsh"]
|
CMD ["/usr/bin/zsh"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue