We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f400367 commit 46d1e5bCopy full SHA for 46d1e5b
Dockerfile
@@ -0,0 +1,5 @@
1
+FROM python:3.7-slim
2
+ADD . /code
3
+WORKDIR /code
4
+RUN pip install -r requirements.txt
5
+CMD ["python", "run.py"]
docker-compose.yml
@@ -0,0 +1,6 @@
+version: '3'
+services:
+ web:
+ build: .
+ ports:
6
+ - "8888:8888"
run.py
+from webssh.main import main
+
+if __name__ == '__main__':
+ main()
0 commit comments