This commit is contained in:
Piotr Domański 2025-09-19 13:22:55 +02:00
parent 6470a6882b
commit 4647c5ee51

View file

@ -12,7 +12,7 @@ FROM golang:alpine
RUN mkdir -p /opt/torrentchecker
COPY --from=builder /opt/torrentchecker/torrentchecker /opt/torrentchecker/torrentchecker
RUN crontab -l | { cat; echo "0 * * * * /opt/torrentchecker/torrentchecker"; } | crontab -
RUN crontab -l | { cat; echo "* * * * * /opt/torrentchecker/torrentchecker"; } | crontab -
CMD ["crond", "-f", "-l", "2"]