Deadmon commited on
Commit
bf82aa1
·
verified ·
1 Parent(s): d167ba5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -16,5 +16,5 @@ RUN pip install --no-cache-dir -r requirements.txt && \
16
  # Expose the port for the webhook server (optional, for manual testing)
17
  EXPOSE 8000
18
 
19
- # Command to run the test suite
20
- CMD ["pytest", "test_webhook_and_start.py", "-v"]
 
16
  # Expose the port for the webhook server (optional, for manual testing)
17
  EXPOSE 8000
18
 
19
+ # Command to run the test suite with verbose output
20
+ CMD ["pytest", "test_webhook_and_start.py", "-v", "--log-file=/app/test.log", "--log-file-level=INFO"]