File size: 127 Bytes
50efed6 |
1 2 3 4 5 6 7 8 |
#!/bin/bash
# Source the virtual environment
source /app/venv/bin/activate
# Run the Python application
exec python ./run.py
|
50efed6 |
1 2 3 4 5 6 7 8 |
#!/bin/bash
# Source the virtual environment
source /app/venv/bin/activate
# Run the Python application
exec python ./run.py
|