From 7abe1d59b6dc61a4c38860f134635c6ab8efab2f Mon Sep 17 00:00:00 2001 From: SidneyNiccolson Date: Mon, 2 Jul 2018 16:13:20 +0200 Subject: [PATCH] test7 --- Dockerfile.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.template b/Dockerfile.template index ad72e15b..3fd58b89 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -40,7 +40,7 @@ WORKDIR /usr/src/app/astroplant-kit # Install AP kit library RUN pip install git+git://github.com/astroplant/astroplant-api-python-client.git#egg=astroplant-client -RUN cd /usr/src/app/astroplant-kit/ && pip install -e . +RUN cd /usr/src/app/astroplant-kit/ && python3 setup.py install WORKDIR /usr/src/app/astroplant-peripheral-device-library @@ -51,7 +51,7 @@ RUN pip install pyserial==3.4 RUN pip install rpi.gpio==0.6.3 RUN pip install git aw1thermsensor==1.0.5 -RUN cd /usr/src/app/astroplant-peripheral-device-library/ && pip install -e . +RUN cd /usr/src/app/astroplant-peripheral-device-library/ && python3 setup.py install # -- End of astroplant-client section -- #