added more packages
All checks were successful
/ build-docker-image (push) Successful in 52s

This commit is contained in:
2025-11-16 22:12:07 +00:00
parent 68ef1cf3e6
commit c73929105c

View File

@@ -1,6 +1,5 @@
FROM gitea/act_runner:0.2.11
FROM gitea/act_runner:0.2.13
RUN echo "build started.."
@@ -9,10 +8,15 @@ apk add --no-cache openssh-client && \
apk add --no-cache curl && \
apk add --no-cache ansible && \
apk add --no-cache nodejs && \
apk add --no-cache rclone && \
apk add --no-cache rsync && \
apk add --no-cache nodejs && \
rm -rf /tmp/* && \
rm -rf /var/cache/apk/*
RUN mkdir /ansible && \
mkdir -p /etc/ansible && \
echo 'localhost' > /etc/ansible/hosts
#download latest stable version of kubectl
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
RUN chmod +x ./kubectl
RUN mv ./kubectl /usr/local/bin