diff options
author | kong wei <kong.wei2@zte.com.cn> | 2017-02-19 14:59:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-19 14:59:13 +0000 |
commit | ebde2dafb975d047e9739874c9cabe4ccc7df7e8 (patch) | |
tree | 6afc6d91042d2b55d8333f170542a4fe55b2db40 /docker/Dockerfile | |
parent | eca769a39045bdf79e915666a0b3a18d50d809b1 (diff) | |
parent | 55aac0f5a7d50e33bc1521a24fc5f2d386572ff1 (diff) |
Merge "Move Dockerfile to ./docker path"
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..48e254f --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,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
|