9 lines
295 B
Docker
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" ]
|