From 33b47fb18282952a331012f7e8f87482eb9490d1 Mon Sep 17 00:00:00 2001 From: Serhii Ofii <132130496+SnowGlowedMountain@users.noreply.github.com> Date: Tue, 20 Aug 2024 15:24:44 +0300 Subject: [PATCH] Update apprunner.yaml --- linguaphoto/apprunner.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linguaphoto/apprunner.yaml b/linguaphoto/apprunner.yaml index 25a0148..673c11a 100644 --- a/linguaphoto/apprunner.yaml +++ b/linguaphoto/apprunner.yaml @@ -5,7 +5,7 @@ runtime: python3 # Specify the Python runtime version build: commands: build: - - pip install -r --root-user-action=ignore requirements.txt # Install dependencies within the virtual environment + - pip install --user -r requirements.txt # Install dependencies within the virtual environment # Specify the start phase command run: command: venv/bin/python main.py # Use the virtual environment's Python to run the application