This commit is contained in:
18
build/Containerfile.debian-11
Normal file
18
build/Containerfile.debian-11
Normal file
@ -0,0 +1,18 @@
|
||||
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"]
|
Reference in New Issue
Block a user