vmtp/Dockerfile
Yichen Wang 09baadba2c Initial release of VMTP to stackforge
Change-Id: I30eb092d9a70dc6b3642a84887bb4604b1a3ea54
2015-02-09 14:14:00 -08:00

23 lines
491 B
Docker

# docker file for creating a container that has vmtp installed and ready to use
FROM ubuntu:14.04
MAINTAINER openstack-systems-group <openstack-systems-group@cisco.com>
# Install VMTP script and dependencies
RUN apt-get update && apt-get install -y \
lib32z1-dev \
libffi-dev \
libssl-dev \
libxml2-dev \
libxslt1-dev \
libyaml-dev \
openssh-client \
python \
python-dev \
python-lxml \
python-pip
COPY . /vmtp/
RUN pip install -r /vmtp/requirements.txt