From 84e3620d076220fe44363f221f3bfa82f383ea81 Mon Sep 17 00:00:00 2001 From: Siddharth110800 Date: Fri, 22 Jul 2022 17:51:15 +0530 Subject: [PATCH] rasa version changed to 1.10.8 in the dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4f11c5e..b34320b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:18.04 ENTRYPOINT [] -RUN apt-get update && apt-get install -y python3 python3-pip && python3 -m pip install --no-cache --upgrade pip && pip3 install --no-cache rasa==3.1.2 +RUN apt-get update && apt-get install -y python3 python3-pip && python3 -m pip install --no-cache --upgrade pip && pip3 install --no-cache rasa==1.10.8 ADD . /app/ RUN chmod +x /app/start_services.sh