mirror of https://github.com/huashengdun/webssh
Sven Gottwald
4 years ago
committed by
GitHub
1 changed files with 8 additions and 1 deletions
@ -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"] |
||||
|
Loading…
Reference in new issue