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