From a93ee1f0c82e0a051cf7a7c6175f4aade237c229 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Wed, 8 May 2024 13:12:57 +0200 Subject: [PATCH] Initial commit --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5e6996b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +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 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 +RUN rm /tmp/* +RUN apt clean +EXPOSE 80 +CMD ["svrjs"]