implemented docker

This commit is contained in:
2023-06-05 18:05:17 -05:00
parent 5c5beddaae
commit 5e468fdf2b
5 changed files with 195 additions and 1 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:alpine3.18
WORKDIR /
COPY . opt
RUN pip install requests
RUN crontab /opt/crontab
RUN chmod +x /opt/entrypoint.sh
CMD ["/opt/entrypoint.sh"]