blob: 696daccdfec64b6834d5d11c4b8c16acde597b1a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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"]
|