Files
run-ansible-skydust/Dockerfile
Renovate Bot 11a90d07e7
All checks were successful
Production deployment / Build and pushing (push) Successful in 2m12s
Update public.ecr.aws/docker/library/node Docker tag to v24
2025-10-28 00:03:02 +00:00

20 lines
454 B
Docker

FROM public.ecr.aws/docker/library/node:24-alpine3.20
LABEL ACT_IMAGE=true
# PIPX Paths
ENV PATH=/root/.local/bin:$PATH
# Install git for gitea actions and ansible
RUN apk add --no-cache bash curl python3 pipx git rsync unzip openssh bash
RUN pipx install --include-deps ansible
ENV PY_COLOR="1"
ENV ANSIBLE_FORCE_COLOR="1"
WORKDIR /usr/src
COPY entrypoint.sh .
RUN chmod +x /usr/src/entrypoint.sh
ENTRYPOINT ["bash","-c","/usr/src/entrypoint.sh"]