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.
11 lines
189 B
Bash
Executable File
11 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check if puudot.py exists
|
|
if [ ! -f "/code/puudot.py" ]; then
|
|
echo "Error: puudot.py not found in /code directory!"
|
|
exit 1
|
|
fi
|
|
|
|
# Run the script
|
|
python3 /code/puudot.py
|