Refactor Option 13: Streamline bash script to Docker image conversion workflow

This commit is contained in:
mrkmntal
2025-11-01 20:00:21 -04:00
parent 6087426e08
commit a43de98578
4 changed files with 22 additions and 7 deletions

6
option13_script.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
echo "Setting up application directory"
mkdir -p /app/bin
echo '#!/bin/bash' > /app/bin/run.sh
echo 'echo "Hello from Tux-Dock generated image"' >> /app/bin/run.sh
chmod +x /app/bin/run.sh