db82e4450a
This change creates a contrib directory in the Cinder tree and adds a project called block-box. This addition provides a method to easily create Docker images for a standalone Cinder deployment and employs a docker-compose file to enable rapid build and deployment of Cinder as a standlone service. Change-Id: Id08ffefd322e80a433b58d48b8b89b1ca1695150
13 lines
300 B
Docker
13 lines
300 B
Docker
FROM python
|
|
COPY test-requirements.txt /test-requirements.txt
|
|
RUN apt-get update \
|
|
&& apt-get install -y \
|
|
libssl-dev \
|
|
git-core \
|
|
libmysqlclient-dev \
|
|
libpq-dev \
|
|
libffi-dev \
|
|
libxslt-dev \
|
|
&& pip install -r test-requirements.txt \
|
|
&& rm -rf /var/lib/apt/lists/*
|