kpinquan/serv00_process
0
1FROM python:3.8-slim-buster2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y openssh-client6RUN pip install paramiko schedule flask7 8COPY vps_monitor.py .9 10EXPOSE 786011 12CMD ["python", "-u", "vps_monitor.py"]1FROM python:3.8-slim-buster2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y openssh-client6RUN pip install paramiko schedule flask7 8COPY vps_monitor.py .9 10EXPOSE 786011 12CMD ["python", "-u", "vps_monitor.py"]