From d4be0bf82e6aa43b0846f764bc1ef4c029062379 Mon Sep 17 00:00:00 2001 From: Adam Dodman Date: Mon, 17 Jul 2017 21:48:56 +0100 Subject: [PATCH] Switch to unbuffered io so things actually print to the docker log --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7354a8c..2bb08e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,4 @@ RUN apk add --no-cache python3 py3-pip tini\ VOLUME ["/config"] -CMD ["/sbin/tini","--","python3","main.py","-c","/config"] +CMD ["/sbin/tini","--","python3","-u","main.py","-c","/config"]