start project, add all command, add get schedule, add set group, add auto update and add auto send notification

This commit is contained in:
2024-06-09 12:54:13 +07:00
commit 8544dda455
10 changed files with 1903 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM python:3.11
WORKDIR /aero
COPY . .
RUN curl -sSL https://install.python-poetry.org -o install-poetry.py
RUN python3 install-poetry.py
ENV PATH="${PATH}:/root/.local/bin"
RUN poetry install