From 6c49b0a7f64b91286d4d2ab9ff701aae4c7c2893 Mon Sep 17 00:00:00 2001 From: myve Date: Sun, 21 Jul 2024 18:29:46 +0000 Subject: [PATCH] Update novnc/Dockerfile --- novnc/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/novnc/Dockerfile b/novnc/Dockerfile index 0c506cd..b00d3c6 100644 --- a/novnc/Dockerfile +++ b/novnc/Dockerfile @@ -2,6 +2,9 @@ FROM alpine/base USER root +# Build ARG for additional packages to install (eg, openssh) +ARG addpkg + # Install ssh client RUN apk add --no-cache \ openssh-client \ @@ -31,5 +34,5 @@ fi ssh ${MYVNC_VNCSSH_HOST} -L ${MYVNC_VNCLISTEN_HOST:-5900}:localhost:${MYVNC_VNCSSH_PORT} & 01-init -# Reset user home directory -USER user \ No newline at end of file +# Default environment +USER ${debug:-user} \ No newline at end of file