edf25cb299
- 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
17 lines
537 B
Plaintext
17 lines
537 B
Plaintext
FROM ubuntu:16.04
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
RUN apt-get update && \
|
|
apt-get install -y apt-utils && \
|
|
apt-get install -y python-pip
|
|
COPY python-redfish.src.tar.gz /python-redfish.src.tar.gz
|
|
RUN mkdir /var/log/python-redfish
|
|
RUN tar xvvf python-redfish.src.tar.gz
|
|
# Need a really recent version of setuptools to support
|
|
# configparser>=3.3.0; python_version < '3' in requirements.txt
|
|
RUN pip install --upgrade setuptools
|
|
RUN cd python-redfish* && \
|
|
pip install -r requirements.txt && \
|
|
python setup.py install
|
|
CMD ["/bin/bash"]
|
|
|