diff --git a/Dockerfile b/Dockerfile index 9329b0c..9b0aabc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,8 @@ # Pull base image FROM python:3.12.2-bookworm -# Set environment variables (we want to write bytecode as we have multiple workers) +# Set environment variables (we want to write bytecode as we have multiple workers, so omit PYTHONDONTWRITEBYTECODE) ENV PYTHONUNBUFFERED 1 -ENV PYTHONDONTWRITEBYTECODE 0 # Create and set work directory called `app` RUN mkdir -p /code