From ba0a6136cf6bd446af64e66d8b21e8ba1018a96e Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Thu, 23 May 2019 17:07:50 +0100 Subject: Install emacs and vim in the Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 11185076..7050837d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ LABEL maintainer="KLEE Developers" # TODO remove adding sudo package # Create ``klee`` user for container with password ``klee``. # and give it password-less sudo access (temporarily so we can use the TravisCI scripts) -RUN apt update && apt -y --no-install-recommends install sudo && \ +RUN apt update && apt -y --no-install-recommends install sudo emacs vim && \ rm -rf /var/lib/apt/lists/* && \ useradd -m klee && \ echo klee:klee | chpasswd && \ -- cgit 1.4.1