Update dockerfile

Break out pip/slackclient install lines to different layers to troubleshoot an issue
master
Jowj 5 years ago committed by GitHub
parent f7296568e1
commit bb0a669bfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
CMD python3 ./mojojojo-bot.py

Loading…
Cancel
Save