# debian.sh --arch 'amd64' out/ 'bookworm' '@1736726400' |
LABEL maintainer=Chris Hammer (chris@thezengarden.net) |
RUN /bin/sh -c rm /etc/localtime && ln -s /usr/share/zoneinfo/US/Eastern /etc/localtime # buildkit |
RUN /bin/sh -c mkdir -p /root/.ssh # buildkit |
COPY conf/ssh_config /root/.ssh/config # buildkit |
COPY conf/hosts /etc/hosts # buildkit |
COPY python/requirements.txt /tmp/requirements.txt # buildkit |
RUN /bin/sh -c apt update && apt dist-upgrade -y && apt autoremove --purge -y && apt install -y python3-pip git systemd nodejs tree procps && pip install pip --upgrade --break-system-packages && pip install -r /tmp/requirements.txt --break-system-packages # buildkit |
COPY ansible/ansible-check.yml /tmp/ansible-check.yml # buildkit |
CMD ["/bin/bash"] |