From c814d208f64386d93f2f230c65c74f5373649617 Mon Sep 17 00:00:00 2001 From: Jasvir Boparoy Date: Thu, 24 Feb 2022 21:55:02 +1100 Subject: [PATCH] Updated requirements.txt for python module 2 requirements.txt was outdated leading to multiple errors when trying to run docker image. The fix was to change version of flask to 1.1.4 and also to add markupsafe too. --- module-2/app/service/requirements.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/module-2/app/service/requirements.txt b/module-2/app/service/requirements.txt index 511cce45..4254b9ef 100644 --- a/module-2/app/service/requirements.txt +++ b/module-2/app/service/requirements.txt @@ -1,4 +1,5 @@ boto3==1.11.16 -Flask==1.1.1 +Flask==1.1.4 Flask-Cors==3.0.8 -werkzeug<1.0 \ No newline at end of file +werkzeug<1.0 +markupsafe==2.0.1 \ No newline at end of file