X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=fdio.infra.pxe%2Fdocker-nginx%2FDockerfile;fp=fdio.infra.pxe%2Fdocker-nginx%2FDockerfile;h=c171f116e8c38f21a91a535afa7edad732aa78cf;hp=0000000000000000000000000000000000000000;hb=d653bff621c44d0af1f4dcb786e9830362cdac38;hpb=df5672b3d9c29b51397f4770eb992c9f3f3955ce diff --git a/fdio.infra.pxe/docker-nginx/Dockerfile b/fdio.infra.pxe/docker-nginx/Dockerfile new file mode 100644 index 0000000000..c171f116e8 --- /dev/null +++ b/fdio.infra.pxe/docker-nginx/Dockerfile @@ -0,0 +1,31 @@ +FROM ubuntu:20.04 as ubuntu_focal + +LABEL Description="ubuntu intermediate image" +LABEL Version="2.0" + +RUN apt update \ + && apt install -y wget + +ENV ISO_FOCAL_AMD64 https://releases.ubuntu.com/20.04.2/ubuntu-20.04.2-live-server-amd64.iso +ENV ISO_FOCAL_ARM64 https://cdimage.ubuntu.com/releases/20.04/release/ubuntu-20.04.2-live-server-arm64.iso + +RUN echo "Preparing ISO Pre-cache" \ + && wget $ISO_FOCAL_AMD64 -O /ubuntu-20.04.2-live-server-amd64.iso \ + && wget $ISO_FOCAL_ARM64 -O /ubuntu-20.04.2-live-server-arm64.iso + + +FROM nginx:stable-alpine + +LABEL Description="nginx service image" +LABEL Version="2.0" + +ENV NGINX_FOCAL_AMD64 /usr/share/nginx/html/ubuntu_focal_amd64/ +ENV NGINX_FOCAL_ARM64 /usr/share/nginx/html/ubuntu_focal_arm64/ + +RUN mkdir -p $NGINX_FOCAL_AMD64 \ + && mkdir -p $NGINX_FOCAL_ARM64 + +COPY --from=ubuntu_focal /ubuntu-20.04.2-live-server-amd64.iso $NGINX_FOCAL_AMD64/ubuntu-20.04.2-live-server-amd64.iso +COPY --from=ubuntu_focal /ubuntu-20.04.2-live-server-arm64.iso $NGINX_FOCAL_ARM64/ubuntu-20.04.2-live-server-arm64.iso + +COPY html/ /usr/share/nginx/html/ \ No newline at end of file