From 7652d1525fc3c219ff5b0f1b83aed6220b0aa603 Mon Sep 17 00:00:00 2001 From: fspreck <f.spreckelsen@indiscale.com> Date: Thu, 20 Jan 2022 13:27:26 +0100 Subject: [PATCH] WIP: Streamline installation in dockerfile --- .docker/Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.docker/Dockerfile b/.docker/Dockerfile index 00bb74e..8a42d30 100644 --- a/.docker/Dockerfile +++ b/.docker/Dockerfile @@ -1,10 +1,6 @@ FROM julia:1.6 -RUN apt-get update -RUN apt-get install -y cmake -RUN apt-get install -y git -RUN apt-get install -y python3-pip -RUN apt-get install -y curl +RUN apt-get update && apt-get install -y libjsoncpp1 cmake git python3-pip curl # Dirty workaround for java not linking to the correct manpage directory (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199) RUN mkdir -p /usr/share/man/man1 -- GitLab