images/ironic/dockerfiles/ubuntu_Dockerfile
Sreejith Punnapuzha b7bcc0924d Ironic and dependency images
* Add script and dockerfile to build ironic image using loci image
    build
  * Add dockerfile for apache and dnsmasq
  * Add make files and readme for all images

Change-Id: Ia37b4608116b5705512faec1d966b45e413a1760
Signed-off-by: Sreejith Punnapuzha <sreejith.punnapuzha@outlook.com>
2020-10-27 10:35:40 -05:00

10 lines
273 B
Plaintext

# Set default image for requirements image
ARG IMAGE=""
FROM $IMAGE as requirements
FROM nginx:alpine
# Previously built requirements image
COPY --from=requirements / /usr/share/nginx/html
RUN cd /usr/share/nginx/html; tar c -f wheels.tar.gz -z *.whl *.txt; rm -f *.whl