Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 5e44747

Browse files
Added Dockerfile inoder have containerized runs of tests
1 parent fa2f5d1 commit 5e44747

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM fedora
2+
RUN dnf update -y
3+
RUN dnf install -y git python-pip
4+
RUN dnf install -y libselinux-python
5+
RUN dnf groupinstall -y "Development Tools"
6+
RUN dnf install -y python-devel
7+
RUN dnf install -y libffi-devel
8+
RUN dnf install -y redhat-rpm-config
9+
RUN dnf install -y openssl-devel
10+
RUN pip install ansible
11+
RUN git clone https://github.com/projectatomic/atomic-host-tests
12+
WORKDIR "/atomic-host-tests"
13+
RUN echo "$PWD"

0 commit comments

Comments
 (0)