From df0ba91aa52a1b7b15e5db31c1a97e5b337421c7 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Sun, 5 Jan 2025 10:19:41 +0100 Subject: [PATCH] chore: update the SVR.JS installer command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b878a36..30f1869 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM devuan/devuan:stable RUN apt update RUN apt install -y curl -RUN curl -fsSL https://downloads.svrjs.org/installer/svr.js.installer.linux.20240509.sh > /tmp/installer.sh +RUN curl -fsSL https://downloads.svrjs.org/installer/svr.js.installer.linux.20250105.sh > /tmp/installer.sh RUN echo "#!/bin/bash" > /tmp/confirm.sh; echo "echo 0" >> /tmp/confirm.sh; echo "yes" >> /tmp/confirm.sh RUN chmod +x /tmp/confirm.sh RUN /tmp/confirm.sh | bash /tmp/installer.sh