From 84248825c76b81203f41ea42060495c0a077af4f Mon Sep 17 00:00:00 2001 From: Jake Lever Date: Tue, 17 Apr 2018 10:24:53 -0700 Subject: [PATCH] Updated PATH in Dockerfile --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index da526c2..e049aef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,10 @@ RUN git clone https://github.com/jakelever/Ab3P.git RUN git clone https://github.com/jakelever/OpenSesamIE.git RUN pip install spacy RUN python -m spacy download en -RUN pip install -e ./pubrunner/ -RUN pubrunner --test --defaultsettings ./Ab3P +RUN pip install -e /pubrunner +RUN pubrunner --test --defaultsettings /Ab3P + +ENV PATH="/pubrunner/openminted:${PATH}" CMD [ "echo", "Success." ]