Initial Commit

This commit is contained in:
2019-09-14 23:57:48 +00:00
commit 0d49729c63
11 changed files with 1089 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM python:3-alpine
#alpine + python3 + cron(from alpine)
#only cron this
RUN echo '* * * * * python3 /var/www/html/sam/src/run_daemon.py' > /etc/crontabs/root
CMD ["crond", "-l 2", "-f"]