2023-03-09 05:35:22 +00:00
|
|
|
FROM debian:bullseye-slim
|
2019-05-22 22:25:05 +00:00
|
|
|
|
2023-03-09 05:35:22 +00:00
|
|
|
RUN apt-get update \
|
2023-03-10 06:24:05 +00:00
|
|
|
&& apt-get install -y --no-install-recommends git neovim tmux stow python3-pip \
|
2023-03-09 05:35:22 +00:00
|
|
|
&& apt-get clean
|
2019-05-22 22:25:05 +00:00
|
|
|
|
2019-06-05 19:27:37 +00:00
|
|
|
WORKDIR /root
|
2019-05-22 22:25:05 +00:00
|
|
|
|
2021-09-27 23:51:13 +00:00
|
|
|
RUN git clone https://github.com/amdavidson/dotfiles.git /root/.dotfiles \
|
2023-03-10 06:24:05 +00:00
|
|
|
&& rm /root/.bash* \
|
2021-09-27 23:51:13 +00:00
|
|
|
&& cd /root/.dotfiles \
|
2023-03-10 06:24:05 +00:00
|
|
|
&& stow -t /root bash git tmux
|
2019-05-23 13:47:23 +00:00
|
|
|
|
2019-05-22 22:25:05 +00:00
|
|
|
CMD ["/usr/bin/zsh"]
|
|
|
|
|
|
|
|
|
|
|
|
|