Update Dockerfile
Browse files- 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"]
|