Merge pull request #21 from Moonlite-Media/installing-external-dependencies

isntalling external dependencies
This commit is contained in:
Darrel Pol 2024-11-03 17:33:33 -06:00 committed by GitHub
commit 582fb85b39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 its 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"]