From 80e84d68057454d43af02b98fa7975d7ffd1c90a Mon Sep 17 00:00:00 2001 From: Lauri Koivunen <lauri.koivunen@utu.fi> Date: Mon, 16 Nov 2020 18:44:06 +0200 Subject: [PATCH] Add curses dep, remove build-essential to slim down --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 45b00c0..5b08ba9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,10 @@ - FROM debian RUN apt-get update && apt-get -y install \ - build-essential \ freeglut3-dev \ gtkwave \ texinfo \ + libncurses-dev \ elfutils \ ctags \ libelf1 \ @@ -18,6 +17,7 @@ RUN apt-get update && apt-get -y install \ arduino-mk \ && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* +# Get us Simavr WORKDIR /tmp/ RUN git clone https://github.com/buserror/simavr.git --single-branch --depth 1 -- GitLab