This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # podman build -t opentofu . | |
| FROM public.ecr.aws/docker/library/ubuntu:26.04 | |
| ARG DEBIAN_FRONTEND="noninteractive" | |
| RUN set -ex \ | |
| && echo "install base" \ | |
| && apt-get update \ | |
| && apt-get install --assume-yes apt-transport-https ca-certificates curl gnupg wget \ | |
| && echo "install tofu" \ |