Skip to content

Commit 4d00dd4

Browse files
Merge pull request #1901 from jcantrill/1839326
Bug 1839326: Install python-six first and verify curator is installed upon build
2 parents 357b0ad + 3b621ba commit 4d00dd4

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

curator/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ RUN mkdir -p $(dirname "$CURATOR_CONF_LOCATION") && \
3636
for pkg in $(ls $HOME/vendor/*.tar.gz); do \
3737
pip3 install --no-deps $pkg; \
3838
done && \
39-
rm -rf $HOME/vendor
39+
rm -rf $HOME/vendor && \
40+
ls /usr/local/bin/curator
4041

4142
WORKDIR ${HOME}
4243
USER 1001

curator/Dockerfile.centos7

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ RUN mkdir -p $(dirname "$CURATOR_CONF_LOCATION") && \
3838
for pkg in "$(ls $HOME/vendor/*.tar.gz)" ; do \
3939
pip3 install --no-deps $pkg; \
4040
done && \
41-
rm -rf $HOME/vendor
41+
rm -rf $HOME/vendor && \
42+
ls /usr/local/bin/curator
4243

4344
WORKDIR ${HOME}
4445
USER 1001

0 commit comments

Comments
 (0)