updates 24-02

This commit is contained in:
Anonymous
2021-02-24 22:34:30 +05:30
committed by GitHub
parent 4613b91168
commit 7485a094f2
33 changed files with 659 additions and 254 deletions

View File

@@ -3,9 +3,8 @@
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
# PLease read the GNU Affero General Public License in <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
FROM python:3.9.2
RUN chmod +x /usr/local/bin/*
RUN wget https://raw.githubusercontent.com/TeamUltroid/Ultroid/main/resources/startup/deploy.sh
RUN sh deploy.sh
FROM python:3.9.2-slim-buster
COPY resources/startup/deploy.sh .
RUN chmod +x deploy.sh && sh deploy.sh
WORKDIR /root/TeamUltroid/
CMD ["bash", "resources/startup/startup.sh"]