File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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#
Original file line number Diff line number Diff line change 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
66docker build . \
77 --iidfile=image.id \
You can’t perform that action at this time.
0 commit comments