e2e-tools; extended manifest
This commit is contained in:
17
gitea/Dockerfile.e2e-tools
Normal file
17
gitea/Dockerfile.e2e-tools
Normal 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
|
||||
Reference in New Issue
Block a user