mirror of
https://github.com/huashengdun/webssh.git
synced 2026-02-14 11:49:50 +00:00
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"]
|