https://gitlab.lrde.epita.fr/akheireddine/bmctool
Raw File
Tip revision: 93e6598916290fbd0570c71285af7b9d5854e9d6 authored by akheireddine on 02 December 2020, 16:19:29 UTC
Update makefile and painless submodule :
Tip revision: 93e6598
Dockerfile
# This file provides the necessary dependencies to build and run BMCTool.

FROM debian:sid
MAINTAINER Anissa Kheireddine <akheireddine@lrde.epita.fr>

WORKDIR /build

RUN apt-get update                                                                     \
 && apt-get install -y --force-yes --no-install-recommends                             \
    ca-certificates  gcc g++ git flex bison libtool autoconf                           \
    cmake automake libxml2-dev gzip doxygen libgmp-dev libreadline-dev ccache          \
    python2.7 libz-dev patch make
back to top