Files
base-images/tf-dev/Dockerfile
T
luke-else c412ebd8d4
Build and Push Dev Containers / build (push) Failing after 21s
chore: Removed TMUX and added bash to lab containers
2026-07-21 15:25:03 +01:00

16 lines
434 B
Docker

FROM git.luke-else.co.uk/luke-else/lab:latest
RUN sudo apk add --no-cache ansible py3-requests py3-dateutil
# 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 [ "/bin/zsh" ]