Files
base-images/tf-dev/Dockerfile
T
luke-else 1a8dd8168e
Build and Push Dev Containers / build (push) Successful in 5m48s
feat: Fixed permissions for when installing opentofu
2026-06-06 17:41:08 +01:00

14 lines
367 B
Docker

FROM git.luke-else.co.uk/luke-else/lab:latest
# Download the installer script:
RUN curl --proto '=https' --tlsv1.2 -fsSL https://get.opentofu.org/install-opentofu.sh -o install-opentofu.sh
RUN chmod +x install-opentofu.sh
# Run the installer
RUN sudo ./install-opentofu.sh --install-method apk
# Remove the installer:
RUN rm -f install-opentofu.sh
CMD [ "tmux" ]