/gist:ac768558233e0e37415f Secret
Last active
August 29, 2015 14:15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:latest | |
RUN apt-get update | |
RUN apt-get install -y python-dev libssl-dev python-pip libmysqlclient-dev \ | |
libxml2-dev libxslt-dev libpq-dev git git-review \ | |
libffi-dev gettext ipmitool psmisc | |
ADD ironic /tmp/ironic | |
RUN pip install -r /tmp/ironic/requirements.txt | |
RUN pip install MySQL-python | |
RUN pip install /tmp/ironic | |
RUN mkdir -p /var/log/ironic/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment