new role gitea_repo

This commit is contained in:
2024-08-16 13:52:17 +02:00
parent 1b832cbd1d
commit 459d255471
15 changed files with 336 additions and 16 deletions

View File

@@ -1,7 +1,12 @@
# docker build -f ansible/Dockerfile -t arcodange-ansible:0.0.0 ansible/
FROM python:slim
RUN apt update && apt install openssh-client socat gosu git -y
RUN apt update && apt install openssh-client socat gosu git curl -y
RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" ; \
chmod +x kubectl; \
mv kubectl /usr/local/bin/; \
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
COPY nonroot_ssh_proxy_setup.sh /usr/local/bin/nonroot_ssh_proxy_setup.sh
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh