mirror of
https://github.com/appleboy/telegram-action.git
synced 2026-05-14 10:52:51 +00:00
17 lines
554 B
Docker
17 lines
554 B
Docker
FROM appleboy/drone-telegram:1.4.2-linux-amd64
|
|
|
|
# Github labels
|
|
LABEL "com.github.actions.name"="Telegram Notify"
|
|
LABEL "com.github.actions.description"="Sending a Telegram message"
|
|
LABEL "com.github.actions.icon"="message-square"
|
|
LABEL "com.github.actions.color"="blue"
|
|
|
|
LABEL "repository"="https://github.com/appleboy/telegram-action"
|
|
LABEL "homepage"="https://github.com/appleboy"
|
|
LABEL "maintainer"="Bo-Yi Wu <appleboy.tw@gmail.com>"
|
|
LABEL "version"="0.0.2"
|
|
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|