From e8695de675f67d6548b6c79fe0dc8bf0196ca18c Mon Sep 17 00:00:00 2001 From: tommykoctur <40829403+tommykoctur@users.noreply.github.com> Date: Wed, 15 Jul 2020 17:13:13 +0200 Subject: [PATCH] downgrade tornado to get it working An update to get this demo working. (proposed change found in issues section). --- examples/practical-example/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/practical-example/Dockerfile b/examples/practical-example/Dockerfile index 5538776..6399242 100644 --- a/examples/practical-example/Dockerfile +++ b/examples/practical-example/Dockerfile @@ -11,10 +11,11 @@ RUN mkdir -p /opt/models && cd /opt/models && \ sed -i 's:full-post-processor:#full-post-processor:g' /opt/models/sample_english_nnet2.yaml RUN apt-get update && \ - apt-get install -y supervisor && \ + apt-get install -y supervisor build-essential python-dev && \ apt-get clean autoclean && \ apt-get autoremove -y && \ - rm -rf /var/lib/apt/lists/* + rm -rf /var/lib/apt/lists/* && \ + pip install tornado==4.3 --upgrade --force-reinstall COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf