Noisy-openstack-container/Dockerfile

10 lines
310 B
Docker
Raw Normal View History

2022-10-07 06:01:52 +00:00
FROM ubuntu:18.04
MAINTAINER = Cory Hawkless
#OpenStack version - Xena
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update \
&& apt-get install -y software-properties-common
RUN add-apt-repository cloud-archive:stein
RUN apt install nova-api -y
COPY nova.conf /etc/nova/nova.conf
ENTRYPOINT [ "nova-api" ]