From cdc91e29c36b820dc5f4078833babe866eeaf15e Mon Sep 17 00:00:00 2001 From: Bruno Cornec Date: Fri, 11 Sep 2015 00:50:35 +0200 Subject: [PATCH] Suppress a useless Dockerfile not used yet which contains private info --- examples/docker/Dockerfile | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 examples/docker/Dockerfile diff --git a/examples/docker/Dockerfile b/examples/docker/Dockerfile deleted file mode 100644 index 041ad08..0000000 --- a/examples/docker/Dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -FROM ubuntu:15.04 -MAINTAINER bruno.cornec@hp.com -ENV DEBIAN_FRONTEND noninterative -ENV http_proxy http://web-proxy.fra.hp.com:8080 -ENV https_proxy http://web-proxy.fra.hp.com:8080 -# Install deps for Redfish mockup -RUN apt-get update -RUN apt-get -y install python-mock python-pip git openssh-client libpython2.7-dev python-oslotest -RUN apt-get -y ansible -RUN useradd -m bruno -RUN chown -R bruno /usr/local -RUN su - bruno -c "git clone https://github.com/bcornec/python-redfish.git ; pip install -r python-redfish/requirements.txt ; cd python-redfish ; python setup.py install -O1" -CMD /bin/bash