Skip to content

Commit 3b3229a

Browse files
author
Martin Jackson
committed
Add gzip to support compressing arbitrary strings
1 parent 821d224 commit 3b3229a

2 files changed

Lines changed: 2 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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ versions: ## Print all the versions of software in the locally-built container
9494
echo -n \"|git-core package \"; rpm -q --qf '%{VERSION}' git-core; echo \" \"; \
9595
echo -n \"|vi package \"; rpm -q --qf '%{VERSION}' vim-minimal; echo \" \"; \
9696
echo -n \"|tar package \"; rpm -q --qf '%{VERSION}' tar; echo \" \"; \
97+
echo -n \"|gzip package \"; rpm -q --qf '%{VERSION}' gzip; echo \" \"; \
9798
echo -n \"|make package \"; rpm -q --qf '%{VERSION}' make; echo \" \"; \
9899
echo -n \"|python package \"; /usr/bin/python3 --version | sed -e s'/Python //' | tr -d '\n'; echo \" \"; \
99100
echo -n \"|jq package \"; rpm -q --qf '%{VERSION}' jq; echo \" \"; \

0 commit comments

Comments
 (0)