Compare commits
10 commits
68a65cf8f9
...
86fd2cff65
Author | SHA1 | Date | |
---|---|---|---|
86fd2cff65 | |||
da3ea41150 | |||
e60ac1fb69 | |||
8cdddc33df | |||
063f5749ec | |||
a5498d2c99 | |||
c67aa8af6f | |||
cb2731f970 | |||
b0cdbb70a6 | |||
f948029b97 |
2 changed files with 10 additions and 11 deletions
19
Dockerfile
19
Dockerfile
|
@ -1,17 +1,16 @@
|
|||
FROM fedora:rawhide
|
||||
FROM fedora:latest
|
||||
|
||||
RUN dnf install -y zsh git vim tmux stow && dnf clean all
|
||||
RUN dnf install -y zsh git neovim tmux stow python3-pip \
|
||||
&& pip3 install pynvim \
|
||||
&& dnf clean all
|
||||
|
||||
RUN mkdir /tmp/home && \
|
||||
useradd amdavidson -s /usr/bin/zsh -m -k /tmp/home && \
|
||||
rm -r /tmp/home
|
||||
WORKDIR /root
|
||||
|
||||
USER amdavidson
|
||||
WORKDIR /home/amdavidson
|
||||
RUN git clone https://github.com/amdavidson/dotfiles.git /root/.dotfiles \
|
||||
&& cd /root/.dotfiles \
|
||||
&& stow -t /root zsh git vim tmux
|
||||
|
||||
RUN git clone https://github.com/amdavidson/dotfiles.git /home/amdavidson/.dotfiles && \
|
||||
cd /home/amdavidson/.dotfiles && \
|
||||
stow -t /home/amdavidson zsh git vim tmux
|
||||
RUN nvim --headless +"PlugInstall --sync" +qa
|
||||
|
||||
CMD ["/usr/bin/zsh"]
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Docker Tools
|
||||
|
||||
A very simple docker container based on `fedora:rawhide` that installs a few programs and downloads my personal `.dotfiles` to allow me to run a container with a familiar environment on a foreign or temporary system.
|
||||
A very simple docker container based on `debian` that installs a few programs and downloads my personal `.dotfiles` to allow me to run a container with a familiar environment on a foreign or temporary system.
|
||||
|
||||
## Running Docker Tools
|
||||
|
||||
|
|
Loading…
Reference in a new issue