taito0 commited on
Commit
a45f213
·
verified ·
1 Parent(s): 0e9ab3b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -3,8 +3,10 @@ FROM python:3.8-slim-buster
3
  WORKDIR /app
4
 
5
  RUN apt-get update && apt-get install -y openssh-client
6
- RUN pip install paramiko schedule
7
 
8
  COPY vps_monitor.py .
9
 
 
 
10
  CMD ["python", "vps_monitor.py"]
 
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", "vps_monitor.py"]