From 1a8dd8168e5ff6784de26a9e6244d016635b8c35 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Sat, 6 Jun 2026 17:41:08 +0100 Subject: [PATCH] feat: Fixed permissions for when installing opentofu --- tf-dev/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tf-dev/Dockerfile b/tf-dev/Dockerfile index 6f849e8..76cd8df 100644 --- a/tf-dev/Dockerfile +++ b/tf-dev/Dockerfile @@ -5,9 +5,9 @@ RUN curl --proto '=https' --tlsv1.2 -fsSL https://get.opentofu.org/install-opent RUN chmod +x install-opentofu.sh # Run the installer -RUN ./install-opentofu.sh --install-method apk +RUN sudo ./install-opentofu.sh --install-method apk # Remove the installer: RUN rm -f install-opentofu.sh -CMD [ "tmux" ] \ No newline at end of file +CMD [ "tmux" ]