From f3c9fed85599af0779e6ea03d1d64c0bf7d0ee78 Mon Sep 17 00:00:00 2001 From: Amaan Iqbal Date: Wed, 1 Apr 2020 16:48:57 +0530 Subject: [PATCH] Move main.py to the Docker container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e2022ce..a4e3361 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,9 @@ RUN pip install nltk RUN pip install pandas RUN pip install sklearn +COPY main.py /main.py COPY entrypoint.sh /entrypoint.sh -RUN pwd RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]