From 5219a89b06b9d268192af68c4b519b2724d53a67 Mon Sep 17 00:00:00 2001 From: "Oleg A. Arkhangelsky" Date: Thu, 28 Dec 2023 22:36:59 +0300 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8e67355..56ff87e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:latest AS builder RUN apt update && apt install -y wget p7zip-full squashfs-tools jq -RUN wget $(wget -qO - https://raw.githubusercontent.com/vyos/vyos-rolling-nightly-builds/main/version.json | jq -r '.[].url' | sed -E 's/(.*)1\.5/\1vyos-1.5/') +RUN wget -qO out.iso $(wget -qO - https://raw.githubusercontent.com/vyos/vyos-rolling-nightly-builds/main/version.json | jq -r '.[].url' | sed -E 's/(.*)1\.5/\1vyos-1.5/') RUN mkdir rootfs && 7z e out.iso filesystem.squashfs -r && \ unsquashfs -f -d rootfs/ filesystem.squashfs