FROM ubuntu:focal as base LABEL authors="Christoph Garth , Robin G. C. Maack " ENV DEBIAN_FRONTEND=noninteractive # -------------------------------------------------------------------------- FROM base as build-base ENV CMAKE_BUILD_TYPE=MinSizeRel \ CMAKE_GENERATOR=Ninja # bring in additional apt sources RUN apt-get update \ && apt-get install --no-install-recommends -yqq ca-certificates \ && echo "deb [trusted=yes] https://apt.kitware.com/ubuntu/ focal main" > /etc/apt/sources.list.d/kitware.list \ && apt-get update # install base development env RUN apt-get install --no-install-recommends -yqq \ build-essential \ ninja-build \ cmake \ dlocate \ file \ curl # -------------------------------------------------------------------------- FROM build-base as builder COPY install-helper /usr/bin # install OSPRay + dependencies COPY pkg/ispc.sh /tmp RUN install-helper /tmp/ispc.sh COPY pkg/tbb.sh /tmp RUN install-helper /tmp/tbb.sh COPY pkg/embree.sh /tmp RUN install-helper /tmp/embree.sh COPY pkg/rkcommon.sh /tmp RUN install-helper /tmp/rkcommon.sh COPY pkg/openimagedenoise.sh /tmp RUN install-helper /tmp/openimagedenoise.sh COPY pkg/openvkl.sh /tmp RUN install-helper /tmp/openvkl.sh COPY pkg/ospray.sh /tmp RUN install-helper /tmp/ospray.sh # install OSMesa COPY pkg/mesa.sh /tmp RUN install-helper /tmp/mesa.sh # install ZFP COPY pkg/zfp.sh /tmp RUN install-helper /tmp/zfp.sh # install Spectra COPY pkg/spectra.sh /tmp RUN install-helper /tmp/spectra.sh # install ParaView ARG paraview=5.10.1 ENV PARAVIEW_VERSION=${paraview} COPY pkg/paraview.sh /tmp RUN install-helper /tmp/paraview.sh # -------------------------------------------------------------------------- FROM builder as builder-ttk # install TTK ARG ttk=dev ENV TTK_VERSION=${ttk} ENV DEV="" COPY pkg/ttk.sh /tmp RUN install-helper /tmp/ttk.sh # -------------------------------------------------------------------------- #FROM builder-ttk as ttk-dev FROM builder as ttk-dev #COPY --from=builder-ttk /usr/local /usr/local RUN apt-get update \ && apt-get -yqq --no-install-recommends install $(cat /usr/local/.pkgs) gdb \ && apt-get clean \ && rm -rf /var/cache/apt/lists ENV DEV="True" COPY pkg/ttk.sh /tmp RUN install-helper /tmp/ttk.sh # -------------------------------------------------------------------------- FROM base as ttk COPY --from=builder-ttk /usr/local /usr/local RUN apt-get update \ && apt-get -yqq --no-install-recommends install $(cat /usr/local/.pkgs) \ && apt-get clean \ && rm -rf /var/cache/apt/lists # add current path to output result COPY noisyTerrain.vtu /home COPY noisyTerrainMSS.py /home # run pvpython to generate examplle image RUN pvpython /home/noisyTerrainMSS.py