comparison service/store/Dockerfile @ 1523:0da337780f22

dep updates; graph url renames; and other build updates Ignore-this: 4603ef3d8db650a13e543dad8580ade8 darcs-hash:0840491cd6a4e4966f47a2abca0ed30ec434022a
author drewp <drewp@bigasterisk.com>
date Wed, 05 Feb 2020 00:23:06 -0800
parents 1dd4da407c0b
children
comparison
equal deleted inserted replaced
1522:040e12a696a9 1523:0da337780f22
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" ]