Files
downdetector/DOCKERFILE
2024-09-04 17:04:55 -04:00

19 lines
209 B
Plaintext

FROM debian
ENV WEBSITES=("google.com" "yahoo.com")
ENV WEBHOOK_URL=""
ENV DISCORD_ID=""
RUN apt update && apt install -y \
bash \
curl \
cron \
COPY ./start.sh /start.sh
CMD ["/start.sh"]