Skip to content

Instantly share code, notes, and snippets.

View jessefarinacci's full-sized avatar

Jesse Farinacci jessefarinacci

View GitHub Profile
@jessefarinacci
jessefarinacci / Dockerfile
Created April 15, 2026 03:43
OpenTofu OCI Image
# 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" \