diff --git a/Dockerfile b/Dockerfile index f7d64246..1c714c12 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,10 @@ FROM python:3.10-alpine -ENV PORT="8000" - -# Keeps Python from generating .pyc files in the container -ENV PYTHONDONTWRITEBYTECODE=1 +ENV PORT="8000" \ + # Keeps Python from generating .pyc files in the container + PYTHONDONTWRITEBYTECODE=1 \ + # Turns off buffering for easier container logging + PYTHONUNBUFFERED=1 # ihatemoney configuration ENV DEBUG="False" \