diff options
Diffstat (limited to 'tests/Dockerfile')
-rw-r--r-- | tests/Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/Dockerfile b/tests/Dockerfile new file mode 100644 index 0000000..696dacc --- /dev/null +++ b/tests/Dockerfile @@ -0,0 +1,11 @@ +FROM fedora:39 + +# Install ansible +RUN dnf update -y +RUN dnf install -y ansible + +WORKDIR /app +COPY . /app + +# Run Ansible against tests +CMD ["ansible-playbook", "tests/tests.yaml"] |