Бот для телеги, открывающий доступ в чатик по приглашениям.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
257 B

FROM python:3.8
ENV TELEGRAM_API_TOKEN=""
ENV GBOT_DELAY_TIME=1
ENV GBOT_DELAY_TIME_Q=180
ENV GBOT_CHAT_ID=""
ENV GBOT_DB_PATH="/data/support.db"
# RUN git pull
COPY requirements.txt ./
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "main.py"]