blob: 48e254fc6b54516fe8538e754fb9f9e45fe8bb08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
FROM centos:7
LABEL escalator_image_version=1.0
RUN yum -y update
RUN yum -y install centos-release-openstack-newton
RUN yum -y install \
wget \
coreutils \
which \
gawk \
grep \
git \
intltool \
make \
rpm \
rpm-build \
python-sphinx \
python2-oslo-sphinx \
python2-oslo-messaging \
python2-oslo-concurrency \
python2-oslo-sphinx \
python-devel \
python-d2to1 \
python-django-compressor \
python-django-openstack-auth \
python-django-pyscss \
python-lesscpy \
python-migrate \
python-pint \
python-routes
|