From db14fe66a43793ed8dfb78ee9c6c97abab005aec Mon Sep 17 00:00:00 2001 From: Patrick Jentsch Date: Sun, 2 Jun 2019 21:41:21 +0200 Subject: [PATCH] Fix --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index adfcd85..086d551 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN pip3 install wheel && pip3 install -U spacy && \ COPY nlp /usr/local/bin COPY spacy_nlp /usr/local/bin -mkdir /input /output -chmod a+rw /input /output +RUN mkdir /input /output && \ + chmod a+rw /input /output ENTRYPOINT ["nlp"]