docker: Execute update.py with unbuffered output
This allows to have real time logging while building the database. Signed-off-by: Maxime Chretien (MixLeNain) <mchretien@linuxmail.org>
This commit is contained in:
parent
aa969fe374
commit
db45f2f9de
2 changed files with 2 additions and 2 deletions
|
|
@ -65,7 +65,7 @@ ENV LXR_DATA_DIR /srv/elixir-data/$PROJECT/data
|
||||||
RUN \
|
RUN \
|
||||||
cd /usr/local/elixir/ && \
|
cd /usr/local/elixir/ && \
|
||||||
./script.sh list-tags && \
|
./script.sh list-tags && \
|
||||||
./update.py
|
python3 -u ./update.py
|
||||||
|
|
||||||
# apache elixir config, see elixir README
|
# apache elixir config, see elixir README
|
||||||
# apache HttpProtolOptions workaround
|
# apache HttpProtolOptions workaround
|
||||||
|
|
|
||||||
|
|
@ -57,7 +57,7 @@ ENV LXR_DATA_DIR /srv/elixir-data/$PROJECT/data
|
||||||
RUN \
|
RUN \
|
||||||
cd /usr/local/elixir/ && \
|
cd /usr/local/elixir/ && \
|
||||||
./script.sh list-tags && \
|
./script.sh list-tags && \
|
||||||
./update.py
|
python3 -u ./update.py
|
||||||
|
|
||||||
# apache elixir config, see elixir README
|
# apache elixir config, see elixir README
|
||||||
# make apache less stricter about cgitb spam headers
|
# make apache less stricter about cgitb spam headers
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue