Update Dockerfile to contain renderer for graphviz workflow files

This commit is contained in:
2025-06-22 15:06:13 +02:00
parent 6547cd9e17
commit 967a40f93a

View File

@ -10,6 +10,10 @@ ENV ENV_NAME=apog_penv
WORKDIR /acsmdc
#RUN apt-get update && apt-get install -y cifs-utils
# Install Graphviz system binaries
RUN apt-get update && apt-get install -y \
graphviz \
&& rm -rf /var/lib/apt/lists/*
# Use mamba if available for faster installation
RUN conda install -y -n base -c conda-forge mamba && \