From a8cba18f3e291255c1416e69ec160a1d8e81b429 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Mon, 13 Jul 2026 19:49:53 +0100 Subject: [PATCH] fix: Added missing sudo for ansible install --- tf-dev/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tf-dev/Dockerfile b/tf-dev/Dockerfile index 2f268ff..7805f04 100644 --- a/tf-dev/Dockerfile +++ b/tf-dev/Dockerfile @@ -1,6 +1,6 @@ FROM git.luke-else.co.uk/luke-else/lab:latest -RUN apk add --no-cache ansible +RUN sudo apk add --no-cache ansible # Download the installer script: RUN curl --proto '=https' --tlsv1.2 -fsSL https://get.opentofu.org/install-opentofu.sh -o install-opentofu.sh