| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:46ac5b8ee4c64ad9ebe840abd5619f571a617ac19483764d47d0eeba7907934f in / |
| CMD ["/bin/bash"] |
| RUN apt-get update && apt-get install -y --no-install-recommends -o Dpkg::Options::="--force-confnew" curl wget git ca-certificates gnupg unzip jq rsync openssh-client sshpass python3 python3-pip python3-venv python3-dev smbclient krb5-user libkrb5-dev python3-kerberos dnsutils build-essential libssl-dev libffi-dev && rm -rf /var/lib/apt/lists/* |
| RUN curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash - && apt-get install -y --no-install-recommends nodejs && rm -rf /var/lib/apt/lists/* |
| RUN curl -fsSL https://gitea.com/gitea/act_runner/releases/download/v${ACT_RUNNER_VERSION}/act_runner-${ACT_RUNNER_VERSION}-linux-amd64 -o /usr/local/bin/act_runner && chmod +x /usr/local/bin/act_runner |
| RUN python3 -m pip install --break-system-packages ansible-core ansible jmespath netaddr passlib cryptography pywinrm requests boto3 |
| RUN ansible-galaxy collection install community.general community.crypto ansible.posix kubernetes.core community.windows microsoft.ad |
| RUN useradd -m -s /bin/bash runner |
| RUN node --version && python3 --version && ansible --version && act_runner --version |