Browse code

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 authored on 2016/11/18 06:00:59
Showing 1 changed files
... ...
@@ -55,6 +55,7 @@ RUN apt-get update && apt-get install -y \
55 55
 	git \
56 56
 	iptables \
57 57
 	jq \
58
+	less \
58 59
 	libapparmor-dev \
59 60
 	libcap-dev \
60 61
 	libltdl-dev \
... ...
@@ -64,6 +65,7 @@ RUN apt-get update && apt-get install -y \
64 64
 	libsqlite3-dev \
65 65
 	libsystemd-journal-dev \
66 66
 	libtool \
67
+	libzfs-dev \
67 68
 	mercurial \
68 69
 	net-tools \
69 70
 	pkg-config \
... ...
@@ -73,11 +75,11 @@ RUN apt-get update && apt-get install -y \
73 73
 	python-mock \
74 74
 	python-pip \
75 75
 	python-websocket \
76
+	tar \
76 77
 	ubuntu-zfs \
77
-	xfsprogs \
78
+	vim \
78 79
 	vim-common \
79
-	libzfs-dev \
80
-	tar \
80
+	xfsprogs \
81 81
 	zip \
82 82
 	--no-install-recommends \
83 83
 	&& pip install awscli==1.10.15