Skip to content

Commit a7d2f67

Browse files
committed
Bumped up versions
1 parent fc6b37b commit a7d2f67

File tree

3 files changed

+31
-16
lines changed

3 files changed

+31
-16
lines changed

Dockerfile

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
FROM python:3.8-slim-buster
1111

12-
ENV YQ_VERSION="3.3.0"
12+
ENV YQ_VERSION="3.3.2"
1313

1414
#
1515
# This image runs on kubernetes in Google Cloud and on OpenShift. Ideally we have one
@@ -63,18 +63,27 @@ RUN apt-get update && \
6363
python3 -m pip install --upgrade pip && \
6464
# install wheel just to avoid all kinds of messages during docker build
6565
python3 -m pip install wheel && \
66+
python3 -m pip install setuptools && \
6667
python3 -m pip install rdflib && \
6768
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
6972
python3 -m pip install boto3 && \
70-
python3 -m pip install pystardog && \
73+
python3 -m pip install botocore && \
7174
python3 -m pip install owlrl && \
7275
python3 -m pip install pandas && \
76+
python3 -m pip install python-dateutil && \
77+
python3 -m pip install requests && \
78+
python3 -m pip install six && \
7379
python3 -m pip install stringcase && \
74-
python3 -m pip install unidecode && \
7580
python3 -m pip install humps && \
76-
python3 -m pip install xlrd && \
81+
python3 -m pip install argparse && \
82+
python3 -m pip install inflection && \
7783
python3 -m pip install ldap3 && \
84+
python3 -m pip install xlrd && \
85+
python3 -m pip install pystardog && \
86+
python3 -m pip install unidecode && \
7887
# python3 -m pip install gssapi && \
7988
# no more pip installs after this point so we can now remove the .cache directory
8089
rm -rf /home/ekgprocess/.cache && \

README.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,30 @@ Utilities in this image:
2424
- unzip
2525
- jq
2626
- rsync
27-
- krb5-user
28-
- krb5-config
29-
- libgssapi-krb5-2
27+
- krb5-user (not yet)
28+
- krb5-config (not yet)
29+
- libgssapi-krb5-2 (not yet)
3030

3131
Python libraries:
3232

3333
- wheel
34+
- setuptools
3435
- rdflib
3536
- sparqlwrapper
36-
- requests
37+
- ekglib
3738
- boto3
38-
- pystardog
39-
- owlrt
39+
- botocore
40+
- owlrl
4041
- pandas
42+
- python-dateutil
43+
- requests
44+
- six
4145
- stringcase
42-
- unidecode
4346
- humps
44-
- xlrd
47+
- argparse
48+
- inflection
4549
- ldap3
46-
- gssapi
47-
50+
- xlrd
51+
- pystardog
52+
- unidecode
53+
- gssapi (not yet)

localbuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
_IMAGE_NAME="docker.io/ekgf/debian-awscli"
33
_IMAGE_VERSION="latest"
4-
_MANUALLY_INCREMENTED_IMAGE_VERSION="0.0.6"
4+
_MANUALLY_INCREMENTED_IMAGE_VERSION="0.0.7"
55

66
docker build . \
77
--iidfile=image.id \

0 commit comments

Comments
 (0)