From 3d1298d63ad41e6fcb68ab31995ff8eafeb0d64d Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 1 Dec 2024 22:11:35 +1100 Subject: [PATCH] feat: add unzip - unzip is required to decompress artifacts --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 65b2890..a8f532e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN dnf module enable -y nodejs:20 && \ # Install packages RUN dnf install -y yum-utils && \ 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 RUN dnf clean all && \