This image for build own image for run telegram bot in Docker. Based on Alpine.
Example Dockerfile for bot who print current date:
FROM msoap/shell2telegram
# may be install some alpine packages:
# RUN apk add --no-cache ...
ENV TB_TOKEN=*******
CMD ["/date", "date"]
Build and run container:
docker build -t date-bot .
docker run --rm date-bot
Content type
Image
Digest
sha256:3d8f748bc…
Size
6 MB
Last updated
about 2 years ago
docker pull msoap/shell2telegram