use unbuffered output

this prints stdout directly instead of buffering it. otherwise docker logs is useless because its not realtime
master v0.2.1
lub 4年前
コミット f88f17bb65

@ -14,4 +14,4 @@ RUN pip install -r requirements.txt
COPY scrape.py ./
USER nobody:nogroup
CMD [ "python", "scrape.py" ]
CMD [ "python", "-u", "scrape.py" ]
読み込み中…
キャンセル
保存