lbls888 commited on
Commit
c39ef76
1 Parent(s): 4848a6a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.8-slim-buster
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y openssh-client
6
+ RUN pip install paramiko schedule flask
7
+
8
+ COPY vps_monitor.py .
9
+
10
+ EXPOSE 8080
11
+
12
+ CMD ["python", "-u", "vps_monitor.py"]