From e3415b43e0292eed34e57ef98853c94295ac3d0c Mon Sep 17 00:00:00 2001 From: Apoorv Vyavahare <82765893+vital987@users.noreply.github.com> Date: Mon, 15 Nov 2021 01:04:07 +0530 Subject: [PATCH] Update v1.4.3 --- Dockerfile.heroku | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Dockerfile.heroku b/Dockerfile.heroku index 2f00316..7fc9a0e 100644 --- a/Dockerfile.heroku +++ b/Dockerfile.heroku @@ -1 +1,18 @@ FROM vital987/vubuntu:purevnc-minimal + +ENV DEBIAN_FRONTEND=noninteractive \ +#VNC Server Password + VNC_PASS="samplepass" \ +#VNC Server Title(w/o spaces) + VNC_TITLE="Vubuntu-PureVNC" \ +#VNC Resolution(720p is preferable) + VNC_RESOLUTION="1280x720" \ +#PORT + PORT=80 \ +#Disable Shared Memory for Brave + BRAVE_USE_SHM=0 \ +#Locale + LANG=en_US.UTF-8 \ + LANGUAGE=en_US.UTF-8 \ + LC_ALL=C.UTF-8 \ + TZ="Asia/Kolkata"