mirror of https://github.com/huashengdun/webssh
6 lines
108 B
Docker
6 lines
108 B
Docker
|
FROM python:3.7-slim
|
||
|
ADD . /code
|
||
|
WORKDIR /code
|
||
|
RUN pip install -r requirements.txt
|
||
|
CMD ["python", "run.py"]
|