Mercurial > hg > GearsTemplate
view Dockerfile @ 553:e9b1f533e587
tweak update_context.pl
author | anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 14 Nov 2019 15:08:08 +0900 |
parents | 7d664be4efa5 |
children |
line wrap: on
line source
# docker build -t gears . # build container # docker run gears # launch container and attach FROM fedora:23 WORKDIR /root RUN dnf update -y RUN dnf install -y gcc gcc-c++ mercurial git vim zsh tar findutils make gdb cmake RUN hg clone http://firefly.cr.ie.u-ryukyu.ac.jp/hg/CbC/CbC_llvm RUN mkdir /root/llvm_build WORKDIR /root/llvm_build RUN /root/CbC_llvm/configure --enable-assertions RUN make -j 2 RUN make install ENV CBC_COMPILER /usr/local/bin/clang WORKDIR /root RUN git clone https://github.com/choller/llcov CMD zsh