From bb0a669bfc75249cd11b9adf78545b5b053b6327 Mon Sep 17 00:00:00 2001 From: Jowj Date: Tue, 28 May 2019 15:15:01 -0500 Subject: [PATCH] Update dockerfile Break out pip/slackclient install lines to different layers to troubleshoot an issue --- docker/dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docker/dockerfile b/docker/dockerfile index 00e4546..f4a2091 100644 --- a/docker/dockerfile +++ b/docker/dockerfile @@ -7,9 +7,10 @@ RUN apk add \ python3 \ python-dev -RUN python3 -m pip install --upgrade pip \ - && python3 -m pip install slackclient +RUN python3 -m pip install --upgrade pip + +RUN python3 -m pip install slackclient COPY ./ ./ -CMD python3 ./mojojojo-bot.py \ No newline at end of file +CMD python3 ./mojojojo-bot.py