Explorar el Código

Add vim to Dockerfile

Why? Most of the time I end up needing an editor when in `make shell`.
Spent much time doing `apt-get update && apt-get install vim`.
Since we're already installing vim-common anyway...

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Brian Goff hace 8 años
padre
commit
7d1a72a286
Se han modificado 1 ficheros con 5 adiciones y 3 borrados
  1. 5 3
      Dockerfile

+ 5 - 3
Dockerfile

@@ -55,6 +55,7 @@ RUN apt-get update && apt-get install -y \
 	git \
 	iptables \
 	jq \
+	less \
 	libapparmor-dev \
 	libcap-dev \
 	libltdl-dev \
@@ -64,6 +65,7 @@ RUN apt-get update && apt-get install -y \
 	libsqlite3-dev \
 	libsystemd-journal-dev \
 	libtool \
+	libzfs-dev \
 	mercurial \
 	net-tools \
 	pkg-config \
@@ -73,11 +75,11 @@ RUN apt-get update && apt-get install -y \
 	python-mock \
 	python-pip \
 	python-websocket \
+	tar \
 	ubuntu-zfs \
-	xfsprogs \
+	vim \
 	vim-common \
-	libzfs-dev \
-	tar \
+	xfsprogs \
 	zip \
 	--no-install-recommends \
 	&& pip install awscli==1.10.15