puudot/Dockerfile
Lauri Koskenniemi 83283c0657 Block connection testing and Docker improvement
Tested different block connection methods to achive orthogonal lines.

Added run script and mounted code to the container to allow code
changes without rebuilding the image.

Implement Docker improvements in main.
2025-08-22 17:16:10 +03:00

11 lines
139 B
Docker

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