Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
xjf6b
/
ceshi
like
0
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
84f63ed
ceshi
/
Dockerfile
xjf6b
Create Dockerfile
009c236
verified
10 months ago
raw
Copy download link
history
blame
Safe
214 Bytes
FROM
python:3.8-slim-buster
WORKDIR /app
RUN
apt-
get
update && apt-
get
install -y openssh-client
RUN
pip install paramiko schedule flask
COPY vps_monitor.py .
EXPOSE 8080
CMD [
"python"
,
"-u"
,
"vps_monitor.py"
]