Skip to content

Commit

Permalink
Add the ability to run robottelo in a container!
Browse files Browse the repository at this point in the history
This PR simply adds a Dockerfile, which enables local and automated
builds of containerized robottelo.
The container is based off Fedora 27 with Python 3.6.4
  • Loading branch information
JacobCallahan authored and omaciel committed May 8, 2018
1 parent a04e296 commit 453e05f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM fedora
MAINTAINER https://github.com/SatelliteQE

RUN ln -s /usr/bin/python3 /usr/bin/python
RUN dnf install -y gcc git libffi-devel openssl-devel python3-devel \
redhat-rpm-config which

COPY / /robottelo/
WORKDIR /robottelo

RUN pip3 install -r requirements.txt

CMD make test-robottelo

0 comments on commit 453e05f

Please sign in to comment.