b7bcc0924d
* 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>
10 lines
273 B
Plaintext
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
|