Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
content badge Iframe embedding
swh:1:cnt:960e26941ec77461e35150e78c7d0e8a29e717ae

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
FROM ubuntu:focal as base
LABEL authors="Christoph Garth <garth@cs.uni-kl.de>, Robin G. C. Maack <maack@rptu.de>"

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

back to top

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API