Install vi in the dev environment.

Refs #5996
This commit is contained in:
Gunnar Beutner 2014-04-11 13:50:43 +02:00
parent 5a41a2c2c0
commit 2024598ef7
1 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,7 @@ cd docker
cat > Dockerfile <<DOCKER cat > Dockerfile <<DOCKER
FROM debian:jessie FROM debian:jessie
RUN apt-get update RUN apt-get update
RUN apt-get install -y clang cmake make ccache flex bison libboost-all-dev libssl-dev git-core cgdb subversion RUN apt-get install -y clang cmake make ccache flex bison libboost-all-dev libssl-dev git-core cgdb subversion vim
RUN groupadd -g `id -g` icinga RUN groupadd -g `id -g` icinga
RUN useradd -m -u `id -u` -g icinga icinga RUN useradd -m -u `id -u` -g icinga icinga
WORKDIR /home/icinga WORKDIR /home/icinga
@ -16,12 +16,13 @@ RUN mkdir gdb_printers && cd gdb_printers && svn co svn://gcc.gnu.org/svn/gcc/tr
RUN git clone https://github.com/ruediger/Boost-Pretty-Printer RUN git clone https://github.com/ruediger/Boost-Pretty-Printer
RUN mkdir build RUN mkdir build
ENV HOME /home/icinga ENV HOME /home/icinga
RUN ln -s icinga2/dev/docker/build debug
DOCKER DOCKER
docker.io build -t icinga2 --rm . docker.io build -t icinga2 --rm .
if [ "$1" != "-i" ]; then if [ "$1" != "-i" ]; then
command="/home/icinga/icinga2/dev/docker/build" command="/home/icinga/debug"
else else
command="/bin/bash" command="/bin/bash"
fi fi