diff options
author | Thomas Duval <thomas.duval@orange.com> | 2018-03-22 17:32:02 +0100 |
---|---|---|
committer | Thomas Duval <thomas.duval@orange.com> | 2018-03-22 17:32:02 +0100 |
commit | 4aa240a33637ffaba2eed26b85d28da2c6a3e074 (patch) | |
tree | 5c415394141bad4384cd87f79502b99b8cf7b458 /moon_manager/Dockerfile | |
parent | 9ac76616f62ef73f093ce63017782dda6bd3fc9d (diff) |
Allow to force the installation of dev python library in dist directory
Change-Id: I4629810db3c4b269f4b47b157bd1aa323d507d18
Diffstat (limited to 'moon_manager/Dockerfile')
-rw-r--r-- | moon_manager/Dockerfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/moon_manager/Dockerfile b/moon_manager/Dockerfile index b5eb4e02..630c275b 100644 --- a/moon_manager/Dockerfile +++ b/moon_manager/Dockerfile @@ -3,6 +3,8 @@ FROM python:3 ADD . /root WORKDIR /root/ RUN pip3 install -r requirements.txt +RUN if [ -d /root/dist ]; then for FILE in $(ls /root/dist/*.tar.gz); do pip install $FILE --upgrade; done; fi +RUN if [ -d /root/dist ]; then for FILE in $(ls /root/dist/*.whl); do pip install $FILE --upgrade; done; fi RUN pip3 install . CMD ["python3", "-m", "moon_manager"]
\ No newline at end of file |