Adde Dockerfile

This commit is contained in:
Stefan Ritt 2020-02-01 18:52:49 +01:00
parent c104b43027
commit 9f6762f4b9

7
Dockerfile Normal file
View File

@ -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