python-redfish/dmtf/Dockerfile
2016-04-04 22:00:41 +02:00

14 lines
442 B
Docker

# Invoke with docker run -p 8000:80 <dockerimageid>
# Then use by browsing http://localhost:8000
FROM ubuntu:15.10
MAINTAINER bruno.cornec@hpe.com
ENV DEBIAN_FRONTEND noninterative
# Install deps for Redfish mockup
RUN apt-get update
RUN apt-get -y install apache2 unzip sed
EXPOSE 80
COPY redfish-setup.sh /tmp/redfish-setup.sh
COPY DSP2043_0.99.0a.zip /tmp/DSP2043_0.99.0a.zip
RUN chmod 755 /tmp/redfish-setup.sh
CMD /tmp/redfish-setup.sh