eb91fbb070
Change-Id: Ie033d1dc087184fd77506b0149101ac26eb459ff
24 lines
554 B
Docker
24 lines
554 B
Docker
# docker file for creating a container that has vmtp installed and ready to use
|
|
FROM ubuntu:14.04
|
|
MAINTAINER vmtp-core <vmtp-core@lists.launchpad.net>
|
|
|
|
# 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 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY . /vmtp/
|
|
|
|
RUN pip install -r /vmtp/requirements.txt
|
|
|