19 lines
466 B
Plaintext
19 lines
466 B
Plaintext
FROM docker.io/debian:11
|
|
LABEL maintainer="Chris Hammer (chris@thezengarden.net)"
|
|
|
|
RUN rm /etc/localtime \
|
|
&& ln -s /usr/share/zoneinfo/US/Eastern /etc/localtime
|
|
|
|
RUN mkdir -p /root/.ssh
|
|
COPY conf/ssh_config /root/.ssh/config
|
|
COPY conf/hosts /etc/hosts
|
|
|
|
RUN apt update \
|
|
&& apt dist-upgrade -y \
|
|
&& apt autoremove --purge -y \
|
|
&& apt install -y ansible-core ansible-lint git
|
|
|
|
COPY ansible/ansible-check.yml /tmp/ansible-check.yml
|
|
|
|
CMD ["/bin/bash"]
|