From dc343f291f6d49fbe74cdc23af121dec8c117701 Mon Sep 17 00:00:00 2001 From: Rene Luria Date: Fri, 29 Jun 2018 16:08:25 +0200 Subject: [PATCH] With setup.py now configured, fix Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fb7a539..8fab095 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,4 +6,6 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . -ENTRYPOINT [ "./cli" ] +RUN python setup.py install + +ENTRYPOINT [ "/usr/local/bin/pbincli" ]