Initial commit

This commit is contained in:
2024-07-17 23:35:45 +03:00
parent 7a1a025471
commit a7bfd5ed4a
42 changed files with 2041 additions and 2 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.11
WORKDIR /moderaotrbot
COPY ./ ./
RUN rm -rf /etc/localtime
RUN ln -s /usr/share/zoneinfo/Europe/Moscow /etc/localtime
RUN echo "Europe/Moscow" > /etc/timezone
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python","-u", "main.py"]