From a8cdf55eae85bc7520818aec80018d0537267ff8 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Thu, 9 May 2024 16:53:47 +0200 Subject: [PATCH] Update SVR.JS installer command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5e6996b..b878a36 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.20240506.sh > /tmp/installer.sh +RUN curl -fsSL https://downloads.svrjs.org/installer/svr.js.installer.linux.20240509.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