Files
elog/Dockerfile
T
2020-02-01 18:52:49 +01:00

8 lines
244 B
Docker

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