From 6777aa68295bc88264acfd286c69228e09ea77df Mon Sep 17 00:00:00 2001 From: Darrel Pol Date: Sun, 3 Nov 2024 10:36:16 -0600 Subject: [PATCH] isntalling external dependencies --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d45c8c3c5..eb4ff0a24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,8 +34,9 @@ RUN mkdir -p extensions && \ COPY requirements.txt . RUN pip install -r requirements.txt -# Copy the .env file from the GitHub Action if it’s created at build time -# COPY .env ./.env +# Install other external dependencies +RUN pip install python-dotenv +RUN pip install insightface # Run the application CMD ["python", "launch.py", "--nowebui", "--deforum-api", "--api", "--skip-torch-cuda-test"]