comparison 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
comparison
equal deleted inserted replaced
721:4fa5c6a61282 722:a93fbf0d0daa
1 FROM bang6:5000/base_x86 1 FROM bang6:5000/base_x86
2 2
3 WORKDIR /opt 3 WORKDIR /opt
4 4
5 COPY requirements.txt ./ 5 COPY requirements.txt ./
6 RUN pip install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt 6 RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements.txt
7 # not sure why this doesn't work from inside requirements.txt
8 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'
7 9
8 COPY *.py *.html ./ 10 COPY *.py *.html ./
9 11
10 EXPOSE 10015 12 EXPOSE 10015
11 13
12 CMD [ "python", "./store.py" ] 14 CMD [ "python3", "./store.py" ]