diff service/store/Dockerfile @ 722:a93fbf0d0daa

dep updates; graph url renames; and other build updates Ignore-this: 4603ef3d8db650a13e543dad8580ade8
author drewp@bigasterisk.com
date Wed, 05 Feb 2020 00:23:06 -0800
parents 2baf1f0994e3
children
line wrap: on
line diff
--- a/service/store/Dockerfile	Wed Feb 05 00:22:48 2020 -0800
+++ b/service/store/Dockerfile	Wed Feb 05 00:23:06 2020 -0800
@@ -3,10 +3,12 @@
 WORKDIR /opt
 
 COPY requirements.txt ./
-RUN pip install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt
+RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt
+# not sure why this doesn't work from inside requirements.txt
+RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -U 'https://github.com/drewp/cyclone/archive/python3.zip?v2'
 
 COPY *.py *.html ./
 
 EXPOSE 10015
 
-CMD [ "python", "./store.py" ]
+CMD [ "python3", "./store.py" ]