commit c72f5db6734f69b0ab74881b5a0d802635fb54bd Author: Chris Cowley Date: Mon Sep 2 13:59:25 2024 +0200 initial commit 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 +