initial commit

This commit is contained in:
Chris Cowley 2024-09-02 13:59:25 +02:00
commit c72f5db673
2 changed files with 11 additions and 0 deletions

9
Dockerfile Normal file
View file

@ -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" ]

2
README.md Normal file
View file

@ -0,0 +1,2 @@
# forgejo-runner-opentofu