annotate lib/patchablegraph/Dockerfile @ 1561:fc45f01f66c2 dependabot/pip/service/colplay/twisted-19.7.0

Bump twisted from 16.0.0 to 19.7.0 in /service/colplay Bumps [twisted](https://github.com/twisted/twisted) from 16.0.0 to 19.7.0. - [Release notes](https://github.com/twisted/twisted/releases) - [Changelog](https://github.com/twisted/twisted/blob/trunk/NEWS.rst) - [Commits](https://github.com/twisted/twisted/compare/twisted-16.0.0...twisted-19.7.0) Signed-off-by: dependabot[bot] <support@github.com>
author dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
date Fri, 14 Feb 2020 10:01:19 +0000
parents 9733063421e1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1511
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
1 FROM bang6:5000/base_x86
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
2
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
3 WORKDIR /opt
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
4
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
5 COPY browser_test_requirements.txt ./
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
6
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
7 RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r browser_test_requirements.txt
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
8 # not sure why this doesn't work from inside requirements.txt
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
9 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'
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
10
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
11 COPY ./patchablegraph.py ./patchsource.py ./setup.py __init__.py patchablegraph/
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
12 RUN pip3 install patchablegraph/
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
13
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
14 COPY browser_test.py ./
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
15
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
16 EXPOSE 8021
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
17
9733063421e1 add browser_test server for playing with /graph resource
drewp <drewp@bigasterisk.com>
parents:
diff changeset
18 CMD [ "python3", "browser_test.py" ]