From 12e5431a34e8fa5e54e5d68dffac079bd022aa2c Mon Sep 17 00:00:00 2001 From: Bill Church Date: Thu, 22 Aug 2024 16:06:49 +0000 Subject: [PATCH] feat: express.js session secret configurable in docker with WEBSSH_SESSION_SECRET env variable --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index fabbc97..a76c9b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,6 +42,7 @@ COPY config.json.sample config.json # Set environment variables ENV PORT=2222 ENV DEBUG= +ENV WEBSSH_SESSION_SECRET= # Make port 2222 available to the world outside this container EXPOSE 2222