python-redfish/redfish-client/tests/fedora-25-pip-p2.dkf
Uggla edf25cb299 Re enable redfish-client tests
- Check if local docker is available, if not skip the tests.
  So this should allow gerrit tests to pass.
- Stick to docker-py 1.x, because 2.0 has lot of naming changes.
- Use Fedora 25 instead of 23.
- Use Ubuntu 16.04 instead of 14.04.
- Use pip --pre parameter. Allowing to test dev release (pre).
- Rename Dockerfiles to get more consistency using a new naming
  convention.
- Naming convention that I hope will make Bruno happy ! ;)

Change-Id: I3cbd51f201c4805ba58ebcabb023237624d4dfc8
2017-02-23 10:25:13 +01:00

7 lines
135 B
Plaintext

FROM fedora:25
RUN dnf install -y python-pip
RUN mkdir /var/log/python-redfish
RUN pip install python-redfish --pre
CMD ["/bin/bash"]