use discord instead of sendgrid

This commit is contained in:
Matthew Tran
2025-05-06 03:31:31 -07:00
parent 8bd3def755
commit 516a02060c
5 changed files with 25 additions and 26 deletions
+2 -2
View File
@@ -6,13 +6,13 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y nginx certbot python3-pip
RUN pip3 install sendgrid --break-system-packages
RUN pip3 install requests --break-system-packages
WORKDIR /root
# TODO make the website code not terrible ;-;
COPY html /var/www/html
COPY sendgrid.key ip.py ./
COPY discord.txt ip.py ./
COPY server.conf entry.sh ./
CMD ["/bin/bash", "/root/entry.sh"]