Files
elog/Dockerfile
2020-02-11 10:59:15 +01:00

8 lines
276 B
Docker

FROM gcc:latest
RUN apt-get -qq update && apt-get -y -qq install cmake && apt-get -y -qq install emacs
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