8 lines
257 B
Docker
Raw Permalink Normal View History

2022-10-07 16:31:52 +10:30
FROM ubuntu:18.04
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" ]