5fbc516b2c
1. Adding logging framework to VMTP; 2. Fix the dependency issue while building VMTP container; Change-Id: Idb532aaec758d0a062e0ccee16f1fb9dfd466a6f
20 lines
469 B
Docker
20 lines
469 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 \
|
|
libz-dev \
|
|
libffi-dev \
|
|
libssl-dev \
|
|
libxml2-dev \
|
|
libxslt-dev \
|
|
libyaml-dev \
|
|
python \
|
|
python-dev \
|
|
python-pip \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install vmtp
|
|
|