# Docker Image for running csg-eb tests

FROM ubuntu:20.04

LABEL maintainer="Mark Meredith <mark.meredith@netl.doe.gov>"

ENV DEBIAN_FRONTEND noninteractive

RUN apt-get -qq update \
  && apt-get -qq -y install --no-install-recommends \
  autoconf=2.* \
  build-essential=12.* \
  git=1:2.* \
  libboost-all-dev=1.* \
  lunzip=1.* \
  m4=1.* \
  openscad=2019.* \
  pkg-config=0.29.* \
  python3-pip=20.* \
  python3-venv=3.8.* \
  wget=1.* \
  && apt-get clean && rm -rf /var/lib/apt/lists/* \

  && pip3 install --no-cache-dir \
  cmake==3.* \
  ninja==1.*

CMD [ "/bin/bash" ]
