forgejo-opentofu-runner/Dockerfile
2024-09-02 13:59:25 +02:00

9 lines
295 B
Docker

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