diff --git a/linguaphoto/apprunner.yaml b/linguaphoto/apprunner.yaml index 2bb0117..fb47f7c 100644 --- a/linguaphoto/apprunner.yaml +++ b/linguaphoto/apprunner.yaml @@ -6,8 +6,9 @@ build: commands: build: - python -m venv venv - - venv/bin/pip install -r requirements.txt # Install dependencies within the virtual environment + - venv/Scripts/activate + - pip install -r requirements.txt # Install dependencies within the virtual environment # Specify the start phase command run: - command: venv/bin/python main.py # Adjust to the path to your application entry point + command: python main.py # Adjust to the path to your application entry point