From c72f5db6734f69b0ab74881b5a0d802635fb54bd Mon Sep 17 00:00:00 2001 From: Chris Cowley Date: Mon, 2 Sep 2024 13:59:25 +0200 Subject: [PATCH] initial commit --- Dockerfile | 9 +++++++++ README.md | 2 ++ 2 files changed, 11 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c6d372c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM alpine + +RUN apk add --no-cache ca-certificates nodejs bash wget + +RUN wget https://get.opentofu.org/install-opentofu.sh -O install-opentofu.sh && \ + chmod +x install-opentofu.sh && \ + ./install-opentofu.sh --install-method apk && rm -f install-opentofu.sh + +ENTRYPOINT [ "/bin/bash" ] diff --git a/README.md b/README.md new file mode 100644 index 0000000..2ec4029 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# forgejo-runner-opentofu +