Dockerfile.telegram 533 B

123456789101112131415161718192021222324252627
  1. FROM debian:stable-slim
  2. LABEL \
  3. maintainer="Davide Alberani <da@erlug.linux.it>"
  4. RUN \
  5. apt-get update && \
  6. apt-get -y --no-install-recommends install \
  7. polygen \
  8. python3 \
  9. python3-cffi \
  10. python3-six \
  11. python3-tz \
  12. python3-decorator \
  13. python3-dateutil \
  14. python3-requests \
  15. python3-cryptography \
  16. python3-setuptools \
  17. python3-wheel \
  18. python3-pip && \
  19. pip3 install python-telegram-bot && \
  20. rm -rf /var/lib/apt/lists/*
  21. COPY tap.grm cry-a-lot telegram-bot.py /
  22. ENTRYPOINT ["python3", "/telegram-bot.py"]