diff options
author | pmikus <peter.mikus@protonmail.ch> | 2024-07-26 14:02:11 +0200 |
---|---|---|
committer | pmikus <peter.mikus@protonmail.ch> | 2024-07-29 14:31:29 +0200 |
commit | 7cb889875738124395962881d6879dcb17c6767c (patch) | |
tree | 77c7da258c5ce58b24444ae8c01578ce6ec9b89d /fdio.infra/pxe/docker-nginx | |
parent | 8e4705f2ec6e2e346909736a36ecb07f05741742 (diff) |
feat(infra): Ubuntu 24.04 LTS
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch>
Change-Id: Ib1f079f7fecb0c1f0f477bc565205165295202bd
Diffstat (limited to 'fdio.infra/pxe/docker-nginx')
-rw-r--r-- | fdio.infra/pxe/docker-nginx/Dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fdio.infra/pxe/docker-nginx/Dockerfile b/fdio.infra/pxe/docker-nginx/Dockerfile index 536d4472ac..39f47b73d6 100644 --- a/fdio.infra/pxe/docker-nginx/Dockerfile +++ b/fdio.infra/pxe/docker-nginx/Dockerfile @@ -6,8 +6,8 @@ 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 +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 \ @@ -19,8 +19,8 @@ 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/ +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 |