simplifying to reduce install size
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
e4f7104917
commit
a6ea6f6ac5
1 changed files with 3 additions and 5 deletions
|
@ -1,17 +1,15 @@
|
|||
FROM debian:bullseye-slim
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y zsh git neovim tmux stow python3-pip \
|
||||
&& pip3 install pynvim \
|
||||
&& apt-get install -y --no-install-recommends git neovim tmux stow python3-pip \
|
||||
&& apt-get clean
|
||||
|
||||
WORKDIR /root
|
||||
|
||||
RUN git clone https://github.com/amdavidson/dotfiles.git /root/.dotfiles \
|
||||
&& rm /root/.bash* \
|
||||
&& cd /root/.dotfiles \
|
||||
&& stow -t /root zsh git vim tmux
|
||||
|
||||
RUN nvim --headless +"PlugInstall --sync" +qa
|
||||
&& stow -t /root bash git tmux
|
||||
|
||||
CMD ["/usr/bin/zsh"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue