keeps python from generating .pyc files in the container

This commit is contained in:
Youe Graillot 2021-11-16 15:12:15 +01:00
parent 2fe04ee597
commit 1083dbc32b

View file

@ -2,6 +2,9 @@ FROM python:3.10-alpine
ENV PORT="8000"
# Keeps Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE=1
# ihatemoney configuration
ENV DEBUG="False" \
ACTIVATE_ADMIN_DASHBOARD="False" \