simplifying to reduce install size
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Andrew Davidson 2023-03-09 22:24:05 -08:00
parent e4f7104917
commit a6ea6f6ac5
Signed by: amd
GPG key ID: F1199FC0A76BB402

View file

@ -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"]