mirror of
https://github.com/huashengdun/webssh.git
synced 2026-08-19 12:16:27 +00:00
Added docker support
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
FROM python:3.7-slim
|
||||
ADD . /code
|
||||
WORKDIR /code
|
||||
RUN pip install -r requirements.txt
|
||||
CMD ["python", "run.py"]
|
||||
@@ -0,0 +1,6 @@
|
||||
version: '3'
|
||||
services:
|
||||
web:
|
||||
build: .
|
||||
ports:
|
||||
- "8888:8888"
|
||||
Reference in New Issue
Block a user