# Docker Image for running csg-eb tests

FROM python:3.8.6

MAINTAINER Mark Meredith <mark.meredith@netl.doe.gov>

RUN wget https://bootstrap.pypa.io/get-pip.py
RUN python3 get-pip.py
RUN python3 -m pip install cmake conan ninja

CMD [ "/bin/bash" ]
