webssh

Web based ssh client https://github.com/huashengdun/webssh webssh.huashengdun.org/
git clone http://git.hanabi.in/repos/webssh.git
Log | Files | Refs | README | LICENSE

commit 8238a4955413d8c2365f6e4e13e9d8744e707eaa
parent 7b8f473ba60b3330c95ac22bfc214a0016e0fa07
Author: Sven Gottwald <2502366+svengo@users.noreply.github.com>
Date:   Wed, 10 Mar 2021 15:11:20 +0100

Update Dockerfile

For security reasons, run the Docker container as an unprivileged user
Diffstat:
MDockerfile | 9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile @@ -1,5 +1,12 @@ FROM python:3.7-slim ADD . /code WORKDIR /code -RUN pip install -r requirements.txt +RUN \ + groupadd -r webssh && \ + useradd -r -s /bin/false -g webssh webssh && \ + chown -R webssh:webssh /code && \ + pip install -r requirements.txt + +EXPOSE 8888/tcp +USER webssh CMD ["python", "run.py"]