feat: add unzip
All checks were successful
Build / build (pull_request) Successful in 1m14s

- unzip is required to decompress artifacts
This commit is contained in:
Ben Vincent 2024-12-01 22:11:35 +11:00
parent 062ec46011
commit 3d1298d63a

View File

@ -12,7 +12,7 @@ RUN dnf module enable -y nodejs:20 && \
# Install packages # Install packages
RUN dnf install -y yum-utils && \ RUN dnf install -y yum-utils && \
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo && \ yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo && \
dnf install -y docker-ce-cli make bash git dnf install -y docker-ce-cli make bash git unzip
# Cleanup # Cleanup
RUN dnf clean all && \ RUN dnf clean all && \