From 96f0c9b11da5df1fd0f0a2dd53f60f98a250f9a1 Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 1 Nov 2019 13:04:37 -0600 Subject: [PATCH] update --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d9d7c87..1426756 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,10 @@ WORKDIR $APP_HOME COPY . ./ RUN pip install -r requirements.txt -RUN cd generator/ctrl +WORKDIR generator/ctrl RUN ls RUN sh install_ctrl_py3.sh RUN sh download_model.sh +WORKDIR $APP_HOME CMD exec guincorn --bind :%PORT --workers 1 --threads 8 app:app