Files
downdetector/DOCKERFILE
T

19 lines
209 B
Docker

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"]