Update Dockerfile
This commit is contained in:
parent
a30185a61e
commit
406b2fc3f4
1 changed files with 4 additions and 1 deletions
|
|
@ -1,6 +1,9 @@
|
||||||
FROM debian:stable-slim
|
FROM debian:stable-slim
|
||||||
|
|
||||||
ENV PYTHONUNBUFFERED: 1
|
# Prevents Python from writing pyc files to disc (equivalent to python -B option)
|
||||||
|
ENV PYTHONDONTWRITEBYTECODE 1
|
||||||
|
# Prevents Python from buffering stdout and stderr (equivalent to python -u option)
|
||||||
|
ENV PYTHONUNBUFFERED 1
|
||||||
|
|
||||||
# set work directory
|
# set work directory
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue