0ffd2deaa2
Dockerfile for Keystone service installed from Ubuntu Cloud Archive. Partially implements: blueprint install-from-ubuntu Depends-On: I66bf97b508b740f8db49ed6217c6fefe5de1637e Change-Id: Ia269ebee75c99a5b39b73237a78fdf1cc9514548
17 lines
482 B
Docker
17 lines
482 B
Docker
FROM ubuntu:trusty
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends software-properties-common \
|
|
&& add-apt-repository cloud-archive:kilo \
|
|
&& apt-get update \
|
|
&& apt-get upgrade -y \
|
|
&& apt-get dist-upgrade -y \
|
|
&& apt-get install -y --no-install-recommends \
|
|
crudini \
|
|
curl \
|
|
openssl \
|
|
&& apt-get clean
|
|
|
|
COPY service_hosts.sh kolla-common.sh /opt/kolla/
|