e2e-tools; extended manifest

This commit is contained in:
2026-02-27 23:46:50 +01:00
parent 9f3a8f4683
commit d4d2d6d882
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
FROM alpine:3.21
RUN apk add --no-cache \
bash \
curl \
jq \
gettext \
openssh-client \
sshpass
RUN curl -fsSL https://get.opentofu.org/install-opentofu.sh | sh -s -- --install-method apk
RUN mkdir -p /root/.ssh && \
echo "Host *" > /root/.ssh/config && \
echo " StrictHostKeyChecking no" >> /root/.ssh/config && \
echo " UserKnownHostsFile /dev/null" >> /root/.ssh/config && \
chmod 600 /root/.ssh/config