|
9 | 9 | # |
10 | 10 | FROM python:3.8-slim-buster |
11 | 11 |
|
12 | | -ENV YQ_VERSION="3.3.0" |
| 12 | +ENV YQ_VERSION="3.3.2" |
13 | 13 |
|
14 | 14 | # |
15 | 15 | # This image runs on kubernetes in Google Cloud and on OpenShift. Ideally we have one |
@@ -63,18 +63,27 @@ RUN apt-get update && \ |
63 | 63 | python3 -m pip install --upgrade pip && \ |
64 | 64 | # install wheel just to avoid all kinds of messages during docker build |
65 | 65 | python3 -m pip install wheel && \ |
| 66 | + python3 -m pip install setuptools && \ |
66 | 67 | python3 -m pip install rdflib && \ |
67 | 68 | python3 -m pip install git+https://github.com/rdflib/sparqlwrapper#egg=sparqlwrapper && \ |
68 | | - python3 -m pip install requests && \ |
| 69 | + python3 -m pip install git+https://github.com/ekgf/ekglib@3fe4283a27c62bb2f8478944c2c4a00fce5e5ad6#egg=ekglib && \ |
| 70 | +# most of the packages below are already pulled in by ekglib |
| 71 | +# but keeping these lines here just for documentation purposes |
69 | 72 | python3 -m pip install boto3 && \ |
70 | | - python3 -m pip install pystardog && \ |
| 73 | + python3 -m pip install botocore && \ |
71 | 74 | python3 -m pip install owlrl && \ |
72 | 75 | python3 -m pip install pandas && \ |
| 76 | + python3 -m pip install python-dateutil && \ |
| 77 | + python3 -m pip install requests && \ |
| 78 | + python3 -m pip install six && \ |
73 | 79 | python3 -m pip install stringcase && \ |
74 | | - python3 -m pip install unidecode && \ |
75 | 80 | python3 -m pip install humps && \ |
76 | | - python3 -m pip install xlrd && \ |
| 81 | + python3 -m pip install argparse && \ |
| 82 | + python3 -m pip install inflection && \ |
77 | 83 | python3 -m pip install ldap3 && \ |
| 84 | + python3 -m pip install xlrd && \ |
| 85 | + python3 -m pip install pystardog && \ |
| 86 | + python3 -m pip install unidecode && \ |
78 | 87 | # python3 -m pip install gssapi && \ |
79 | 88 | # no more pip installs after this point so we can now remove the .cache directory |
80 | 89 | rm -rf /home/ekgprocess/.cache && \ |
|
0 commit comments