chat_moderator_bot/Dockerfile

14 lines
292 B
Docker
Raw Normal View History

2024-07-17 20:35:45 +00:00
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"]