From 9f6762f4b9154d0389b24b371c1a2f8b1cb66606 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Sat, 1 Feb 2020 18:52:49 +0100 Subject: [PATCH] Adde Dockerfile --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..f6d4fc67 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM gcc:latest +RUN apt-get -qq update && apt-get -y -qq install cmake +RUN git clone --quiet https://ritt@bitbucket.org/ritt/elog.git +WORKDIR /elog +RUN git submodule update --init +RUN mkdir build && cd build && cmake .. && make +RUN ls -l build