Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Add unzip #107

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,17 @@ RUN apt-get update -y && \
apt-get install -y --no-install-recommends libxml2=${LIBXML_VERSION} && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# Install tools required by Sonar extension for Azure DevOps

# renovate: datasource=repology depName=debian_12/unzip versioning=deb
ENV UNZIP_VERSION=6.0

RUN apt-get update -y && \
# Install unzip
apt-get install -y --no-install-recommends unzip=${UNZIP_VERSION}-28 && \
# Clean up
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
# Smoke test
unzip --hh