rename Containerfile -> Dockerfile
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-11-19 13:13:06 -05:00
parent 450aea89a6
commit 1b6291e52f
2 changed files with 1 additions and 1 deletions

19
Dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM fedora:39
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
COPY conf/dnf.conf /etc/dnf/dnf.conf
COPY python/requirements.txt /tmp/requirements.txt
RUN dnf install -y python3-pip git ansible-core python3-ansible-lint
# && pip install pip --upgrade \
# && pip install -r /tmp/requirements.txt
COPY ansible/ansible-check.yml /tmp/ansible-check.yml
CMD ["/bin/bash"]