Skip to content

Commit

Permalink
🔧 Added PYTHONUNBUFFERED=1 and PYTHONDONTWRITEBYTECODE=1
Browse files Browse the repository at this point in the history
Added PYTHONUNBUFFERED=1 to unbuffer python logs and PYTHONDONTWRITEBYTECODE=1 to avoid create .pyc files
  • Loading branch information
estebanx64 committed Mar 20, 2024
1 parent 0571c90 commit aac8428
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker-images/python3.10.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM python:3.10-bullseye

LABEL maintainer="Sebastian Ramirez <[email protected]>"

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1

COPY install-nginx-debian.sh /

RUN bash /install-nginx-debian.sh
Expand Down
3 changes: 3 additions & 0 deletions docker-images/python3.11.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM python:3.11-bullseye

LABEL maintainer="Sebastian Ramirez <[email protected]>"

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1

COPY install-nginx-debian.sh /

RUN bash /install-nginx-debian.sh
Expand Down
3 changes: 3 additions & 0 deletions docker-images/python3.7.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM python:3.7-bullseye

LABEL maintainer="Sebastian Ramirez <[email protected]>"

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1

COPY install-nginx-debian.sh /

RUN bash /install-nginx-debian.sh
Expand Down
3 changes: 3 additions & 0 deletions docker-images/python3.8.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM python:3.8-bullseye

LABEL maintainer="Sebastian Ramirez <[email protected]>"

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1

COPY install-nginx-debian.sh /

RUN bash /install-nginx-debian.sh
Expand Down
3 changes: 3 additions & 0 deletions docker-images/python3.9.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM python:3.9-bullseye

LABEL maintainer="Sebastian Ramirez <[email protected]>"

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1

COPY install-nginx-debian.sh /

RUN bash /install-nginx-debian.sh
Expand Down

0 comments on commit aac8428

Please sign in to comment.