diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..84c4139 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,28 @@ +# TODO: move from python2 to python3 +FROM python:2 + +USER root + +WORKDIR /deckard + +RUN apt-get update -y + +RUN apt-get update -y && apt-get install -y \ + git \ + make \ + gcc \ + g++ \ + cmake \ + libtool \ + autoconf \ + automake \ + libltdl-dev \ + bison \ + flex + +COPY . . + +WORKDIR /deckard/src/main + +RUN ./build.sh +