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.
12 lines
147 B
Docker
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"]
|