blob: 536d4472ac708c7985c5bdd748d0dd14be72cbe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
FROM ubuntu:24.04 as ubuntu_noble
LABEL Description="ubuntu intermediate image"
LABEL Version="2.0"
RUN apt update \
&& apt install -y wget
ENV ISO_NOBLE_AMD64 https://releases.ubuntu.com/releases/noble/ubuntu-24.04-live-server-amd64.iso
ENV ISO_NOBLE_ARM64 https://cdimage.ubuntu.com/releases/noble/release/ubuntu-24.04-live-server-arm64.iso
RUN echo "Preparing ISO Pre-cache" \
&& wget $ISO_NOBLE_AMD64 -O /ubuntu-24.04-live-server-amd64.iso \
&& wget $ISO_NOBLE_ARM64 -O /ubuntu-24.04-live-server-arm64.iso
FROM nginx:stable-alpine
LABEL Description="nginx service image"
LABEL Version="2.0"
ENV NGINX_NOBLE_AMD64 /usr/share/nginx/html/ubuntu_noble_amd64/
ENV NGINX_NOBLE_ARM64 /usr/share/nginx/html/ubuntu_noble_arm64/
RUN mkdir -p $NGINX_NOBLE_AMD64 \
&& mkdir -p $NGINX_NOBLE_ARM64
COPY --from=ubuntu_noble /ubuntu-24.04-live-server-amd64.iso $NGINX_NOBLE_AMD64/ubuntu-24.04-live-server-amd64.iso
COPY --from=ubuntu_noble /ubuntu-24.04-live-server-arm64.iso $NGINX_NOBLE_ARM64/ubuntu-24.04-live-server-arm64.iso
COPY html/ /usr/share/nginx/html/
|