forgejo-opentofu-runner/Dockerfile

10 lines
295 B
Text
Raw Permalink Normal View History

2024-09-02 13:59:25 +02:00
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" ]