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>
This commit is contained in:
parent
a27e51ea98
commit
7d1a72a286
1 changed files with 6 additions and 4 deletions
10
Dockerfile
10
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 \
|
||||
ubuntu-zfs \
|
||||
xfsprogs \
|
||||
vim-common \
|
||||
libzfs-dev \
|
||||
tar \
|
||||
ubuntu-zfs \
|
||||
vim \
|
||||
vim-common \
|
||||
xfsprogs \
|
||||
zip \
|
||||
--no-install-recommends \
|
||||
&& pip install awscli==1.10.15
|
||||
|
|
Loading…
Reference in a new issue