From 4af4431a442b3046ecb13eb4c827c6c6ef5e71f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Sat, 12 Aug 2023 13:50:15 +0200 Subject: [PATCH] Fix task installation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2648507..bd46903 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,5 +7,5 @@ RUN dnf -y upgrade --refresh RUN dnf -y install python3.9 python3.10 python3-pip pipenv fish helm awscli ansible podman podman-docker git git-lfs jq make openssh nodejs npm golang sqlite rsync wget # kubectl terraform RUN dnf -y groupinstall "Development Tools" -RUN wget https://github.com/go-task/task/releases/download/v3.28.0/task_linux_amd64.rpm && dnf localinstall task_linux_amd64.rpm && rm task_linux_amd64.rpm +RUN wget https://github.com/go-task/task/releases/download/v3.28.0/task_linux_amd64.rpm && dnf localinstall -y task_linux_amd64.rpm && rm task_linux_amd64.rpm RUN update-ca-trust