# Downdetector Dockerfile FROM debian # Set required environment variables ENV WEBSITES='("google.com" "yahoo.com")' ENV WEBHOOK_URL="" ENV DISCORD_ID="" # Set fixed environment variables ENV CRON_CONFIG=/downdetector/cron.conf # Set working directory WORKDIR /downdetector # Update and install dependencies RUN apt update && \ apt upgrade -y && \ bash \ curl \ vim \ cron COPY isalive.sh . COPY cron.conf . COPY start.sh . CMD ["./start.sh"]