forwardspam_cyprus_off/Dockerfile
2024-09-14 23:27:11 +03:00

13 lines
307 B
Docker

FROM python:3.11
WORKDIR /forwardspam_nedvizhka_Ciprus
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"]