docker/bootstrap: Add vim/nano to assist in bootstrap

Change-Id: I822e4af05754296a0c4415028230475ea7fb6be0
This commit is contained in:
Alexander von Gluck IV 2019-03-19 13:33:12 -05:00
parent 9fef538b5b
commit 7f94422796

View File

@ -16,6 +16,10 @@ RUN apt-get install -y python
RUN apt-get install -y cmake
# ICU Requirements
RUN apt-get install -y pkg-config
# Developer sundries (that won't impact bootstrap)
RUN apt-get install -y vim nano
RUN echo "source /usr/share/vim/vim80/defaults.vim" > ~/.vimrc
RUN echo "set mouse=" >> ~/.vimrc
ENV GIT_BUILDTOOLS="https://git.haiku-os.org/buildtools"
ENV GIT_HAIKU="https://git.haiku-os.org/haiku"