Fix S2I assemble script - correct requirements.txt path

- Update assemble script to use /tmp/src/requirements.txt
- Fix build error where requirements.txt was not found
- Ensure S2I build process can locate dependencies correctly
This commit is contained in:
2025-10-04 09:17:22 -03:00
parent ec4dfbb2ef
commit 06f41c789b

View File

@@ -9,7 +9,7 @@ echo "Building ORU Analyzer from source..."
# Install Python dependencies
echo "Installing Python dependencies..."
pip install --no-cache-dir -r requirements.txt
pip install --no-cache-dir -r /tmp/src/requirements.txt
# Create application directory structure
echo "Creating application directory structure..."