tg-sync

git clone git://archive.git.mtrnord.blog/Nordgedanken/tg-sync.git
Log | Files | Refs | README

Dockerfile (111B)


      1 FROM python:3.5
      2 
      3 WORKDIR /app
      4 
      5 COPY . /app
      6 
      7 RUN pip install -r requirements.txt
      8 
      9 CMD ["python", "/app/bot.py"]