kolla-ansible/docker/keystone/Dockerfile
Daneyon Hansen 8eb36e7cde Fixes Keystone openrc and sets / for scripts
Previously, the keydtone openrc file was not using the proper
auth url, whcih was broken with too many double ticks. Also
changed the auth port from public to admin since keystone user
is an admin tenant. Changed DIR for scripts to align with the
rest of the project.

Change-Id: Iadde3239227e65ecca479b16a7b7db51d3a579c8
2015-03-20 07:18:21 +00:00

15 lines
360 B
Docker

FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base
MAINTAINER Kolla Project (https://launchpad.net/kolla)
#Install required packages
RUN yum -y install openstack-keystone \
python-keystoneclient \
; yum clean all
# Add start-up and check scripts
ADD ./start.sh /start.sh
ADD ./check.sh /check.sh
# Run the Keystone start script
CMD ["/start.sh"]