puudot/Dockerfile
Lauri Koskenniemi 0e5a2868b0 Introduce verbose mode and generalize output formats
Added program specific configurations in config.yaml under puudot
and added key for verbose mode. Currently verbose mode prints
'dot' information when running the program.

Refactored puudot.py and graph.py in order to allow easier
addition of output formats.
2025-12-03 20:43:05 +02:00

12 lines
147 B
Docker

FROM alpine
RUN apk add --no-cache \
yq \
python3 \
py3-yaml \
graphviz
COPY run.sh /run.sh
RUN chmod +x /run.sh
CMD ["/run.sh"]