add dockerfile for playbook testing

This commit is contained in:
stratholme 2023-03-23 00:53:07 +01:00
commit ec1c6bea8e
2 changed files with 40 additions and 0 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM debian:bullseye
RUN apt-get update && \
apt-get -y install \
ansible \
ansible-lint \
vim\
git
RUN useradd -U -m -u 1000 user
USER 1000
ADD config/vimrc /home/user/.vimrc
WORKDIR /data