initial commit
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2023-06-16 02:11:08 -05:00
parent 6231d42bfd
commit fc55f479fa
7 changed files with 49 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
from alpine:latest
RUN apk add --no-cache curl
COPY . opt
RUN crontab /opt/crontab
RUN chmod +x /opt/entrypoint.sh
CMD ["/opt/entrypoint.sh"]