FROM archlinux:latest # Arch bootstrap as per container instructions RUN pacman-key --init && \ pacman -Syu --noconfirm # Install packages RUN pacman -S git curl tmux vim --noconfirm # Make tmux run on bash start RUN echo "tmux" >> ~/.bashrc # Install vimrc RUN git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime && \ sh ~/.vim_runtime/install_awesome_vimrc.sh # Run bash CMD ["bash"]