From 697577373a41b443fbd22577473f699c04e9dde8 Mon Sep 17 00:00:00 2001 From: codingfrog27 Date: Wed, 27 May 2026 13:15:03 +0200 Subject: [PATCH] pointed webVM to new image --- config_public_terminal.js | 2 +- dockerfiles/debian_large | 2 +- dockerfiles/debian_mini | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config_public_terminal.js b/config_public_terminal.js index 2c49d4a..88cf3d3 100644 --- a/config_public_terminal.js +++ b/config_public_terminal.js @@ -1,5 +1,5 @@ // The root OS image location, change to local filepath if serving locally -export const diskImageUrl = "wss://disks.webvm.io/debian_large_20230522_5044875331_2.ext2"; +export const diskImageUrl = "wss://disks.webvm.io/debian_buster_large_permis_fixed_01-06-2026.ext2"; // The root filesystem backend type use "cloud" for serving remotely or "bytes" for serving locally export const diskImageType = "cloud"; // Print an introduction message about the technology diff --git a/dockerfiles/debian_large b/dockerfiles/debian_large index 8ce1c09..ace1384 100644 --- a/dockerfiles/debian_large +++ b/dockerfiles/debian_large @@ -24,6 +24,6 @@ RUN chmod -R +x /home/user/examples/lua # We set WORKDIR, as this gets extracted by Webvm to be used as the cwd. This is optional. WORKDIR /home/user/ # We set env, as this gets extracted by Webvm. This is optional. -ENV HOME="/home/user" TERM="xterm" USER="user" SHELL="/bin/bash" EDITOR="vim" LANG="en_US.UTF-8" LC_ALL="C" +ENV HOME="/home/user" TERM="xterm" USER="user" SHELL="/bin/bash" EDITOR="vim" LANG="C.UTF-8" RUN echo 'root:password' | chpasswd CMD [ "/bin/bash" ] diff --git a/dockerfiles/debian_mini b/dockerfiles/debian_mini index f81992c..6750012 100644 --- a/dockerfiles/debian_mini +++ b/dockerfiles/debian_mini @@ -20,6 +20,6 @@ RUN chmod -R +x /home/user/examples/lua # We set WORKDIR, as this gets extracted by Webvm to be used as the cwd. This is optional. WORKDIR /home/user/ # We set env, as this gets extracted by Webvm. This is optional. -ENV HOME="/home/user" TERM="xterm" USER="user" SHELL="/bin/bash" EDITOR="vim" LANG="en_US.UTF-8" LC_ALL="C" +ENV HOME="/home/user" TERM="xterm" USER="user" SHELL="/bin/bash" EDITOR="vim" LANG="C.UTF-8" RUN echo 'root:password' | chpasswd CMD [ "/bin/bash" ]