Skip to content

Commit 7d96ed4

Browse files
authored
Merge pull request #59 from mhjacks/add_gzip
Add gzip to support compressing arbitrary strings
2 parents 821d224 + 9536aac commit 7d96ed4

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ RUN alternatives --install /usr/bin/python3 python3 /usr/bin/python${PYTHON_VERS
6060
# Add requirements.yml file for ansible collections
6161
COPY requirements.yml /tmp/requirements.yml
6262

63-
RUN microdnf --disableplugin=subscription-manager install -y make git-core tar vi jq which findutils diffutils sshpass $EXTRARPMS && \
63+
RUN microdnf --disableplugin=subscription-manager install -y make git-core tar vi jq which findutils diffutils sshpass gzip $EXTRARPMS && \
6464
microdnf remove -y $DNF_TO_REMOVE && \
6565
rpm -e --nodeps $RPM_TO_FORCEFULLY_REMOVE && \
6666
microdnf clean all && \

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ TESTCOMMAND := "set -e; echo '* Helm: '; helm version; \
2323
echo '* rhvp.cluster_utils: '; ansible-galaxy collection list | grep rhvp.cluster_utils ; \
2424
echo '* diff: '; diff --version ; \
2525
echo '* find: '; find --version ; \
26+
echo '* gzip: '; gzip --version ; \
2627
echo '* tea: '; tea --version" ;
2728

2829
##@ Help-related tasks
@@ -94,6 +95,7 @@ versions: ## Print all the versions of software in the locally-built container
9495
echo -n \"|git-core package \"; rpm -q --qf '%{VERSION}' git-core; echo \" \"; \
9596
echo -n \"|vi package \"; rpm -q --qf '%{VERSION}' vim-minimal; echo \" \"; \
9697
echo -n \"|tar package \"; rpm -q --qf '%{VERSION}' tar; echo \" \"; \
98+
echo -n \"|gzip package \"; rpm -q --qf '%{VERSION}' gzip; echo \" \"; \
9799
echo -n \"|make package \"; rpm -q --qf '%{VERSION}' make; echo \" \"; \
98100
echo -n \"|python package \"; /usr/bin/python3 --version | sed -e s'/Python //' | tr -d '\n'; echo \" \"; \
99101
echo -n \"|jq package \"; rpm -q --qf '%{VERSION}' jq; echo \" \"; \

0 commit comments

Comments
 (0)