10 lines
295 B
Text
10 lines
295 B
Text
![]() |
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" ]
|