Skip to content

Commit b7bc1dd

Browse files
committed
Added more python libs
1 parent 278e37e commit b7bc1dd

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN apt-get update && \
4242
apt-get install -y --no-install-recommends apt-utils 2> >( grep -v 'since apt-utils is not installed' >&2 ) && \
4343
apt-get install -y -qq less groff ca-certificates wget curl jq git rsync unzip && \
4444
# create /home/ekgprocess/.cache and own it as root to avoid red warning messages during docker build
45-
mkdir -p /home/ekgprocess/.cache && chown root /home/ekgprocess/.cache && \
45+
mkdir -p /home/ekgprocess/.cache && chown root /home/ekgprocess/.cache && \
4646
python3 -m pip install --upgrade pip && \
4747
# install wheel just to avoid all kinds of messages during docker build
4848
python3 -m pip install wheel && \
@@ -52,6 +52,11 @@ RUN apt-get update && \
5252
python3 -m pip install boto3 && \
5353
python3 -m pip install pystardog && \
5454
python3 -m pip install owlrl && \
55+
python3 -m pip install pandas && \
56+
python3 -m pip install stringcase && \
57+
python3 -m pip install unidecode && \
58+
python3 -m pip install humps && \
59+
python3 -m pip install xlrd && \
5560
# no more pip installs after this point so we can now remove the .cache directory
5661
rm -rf /home/ekgprocess/.cache && \
5762
#

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.4"
4+
_MANUALLY_INCREMENTED_IMAGE_VERSION="0.0.5"
55

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

0 commit comments

Comments
 (0)