Browse Source
🔧 Add `ENV PYTHONUNBUFFERED=1` to log output directly to Docker (#1378)
pull/13907/head
Sebastián Ramírez
10 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
0 deletions
-
backend/Dockerfile
|
@ -1,5 +1,7 @@ |
|
|
FROM python:3.10 |
|
|
FROM python:3.10 |
|
|
|
|
|
|
|
|
|
|
|
ENV PYTHONUNBUFFERED=1 |
|
|
|
|
|
|
|
|
WORKDIR /app/ |
|
|
WORKDIR /app/ |
|
|
|
|
|
|
|
|
# Install uv |
|
|
# Install uv |
|
|