From 24420f42ab3344d25170cfe6ec7a0598b332710b Mon Sep 17 00:00:00 2001 From: gsd Date: Thu, 16 Mar 2023 19:51:04 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BF=D0=BE=D0=B2=D1=8B=D1=88=D0=B0=D0=B5?= =?UTF-8?q?=D0=BC=20=D0=BA=D0=B0=D1=87=D0=B5=D1=81=D1=82=D0=B2=D0=BE=20?= =?UTF-8?q?=D1=81=D0=B1=D0=BE=D1=80=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- git_build/Dockerfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/git_build/Dockerfile b/git_build/Dockerfile index 79b26dc..66e95fd 100644 --- a/git_build/Dockerfile +++ b/git_build/Dockerfile @@ -1,7 +1,14 @@ FROM python:3.10 RUN python -m pip install git+https://github.com/Rapptz/discord.py aiohttp WORKDIR /app -RUN cd /tmp && git clone https://git.pblr-nyk.pro/gsd/Facti13.Bot.Discord.V2 && cp -a Facti13.Bot.Discord.V2/. /app && rm -r Facti13.Bot.Discord.V2 + +ENV TZ=Europe/Moscow ENV PYTHONUNBUFFERED 1 -RUN "python bot.py --import-test" +RUN mkdir /home/service && \ +cp /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \ +dpkg-reconfigure -f noninteractive tzdata + +ARG BUILDDATE +ENV BUILDDATE $BUILDDATE +RUN echo $BUILDDATE && cd /tmp && git clone https://git.pblr-nyk.pro/gsd/Facti13.Bot.Discord.V2 && cp -a Facti13.Bot.Discord.V2/. /app && rm -r Facti13.Bot.Discord.V2 ENTRYPOINT ["python", "bot.py"] \ No newline at end of file